-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
157 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
# GoldUserCoins | ||
# Gold User Coins | ||
|
||
Geode mod that causes all in-game user coins to be rendered as gold secret coins. 100% cosmetic | ||
Geode mod that causes all in-game user coins to be rendered as gold secret coins. | ||
|
||
This is a purely visual change. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
# 2.0.0 | ||
- No longer done via patching the game, should be easy to update now :D (thank you spaghettdev) | ||
- Coins in the level complete UI are also gold now | ||
- Compatability with Coins in Pause Menu mod | ||
- Added settings | ||
|
||
# 1.0.2 | ||
- Fixed reloading resources (e.g. from graphics settings) undoing the texture swap | ||
|
||
# 1.0.0 | ||
- Initial release | ||
- Initial releasedo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,45 @@ | ||
{ | ||
"geode": "3.4.0", | ||
"geode": "4.0.1", | ||
"gd": { | ||
"win": "2.206" | ||
"win": "2.2074", | ||
"android": "2.2074" | ||
}, | ||
"version": "v1.0.3", | ||
"version": "v2.0.0", | ||
"id": "colon.gold_user_coins", | ||
"name": "Gold User Coins", | ||
"developer": "Colon", | ||
"description": "Causes user coins to render as secret coins", | ||
"repository": "https://github.com/GDColon/Gold-User-Coins" | ||
"links": { | ||
"source": "https://github.com/GDColon/Gold-User-Coins" | ||
}, | ||
"settings": { | ||
"goldUI": { | ||
"name": "Gold coins on end screen", | ||
"description": "If gold coins should also be shown on the level's end screen\n\n<cj>(the particle effect during the animation is still the wrong color, send me some delicious grilled squid and I might get around to fixing it)</c>", | ||
"type": "bool", | ||
"default": true, | ||
"requires-restart": true | ||
}, | ||
|
||
"noBronze": { | ||
"name": "Remove bronze coin tint", | ||
"description": "Removes the bronze coloring for unverified user coins", | ||
"type": "bool", | ||
"default": true | ||
}, | ||
|
||
"goldCoinsEditor": { | ||
"name": "Sneaky sneaky", | ||
"description": "Hold ALT while placing a user coin in the editor to place a real gold one instead (will not save)", | ||
"type": "bool", | ||
"default": false | ||
} | ||
}, | ||
"dependencies": [ | ||
{ | ||
"id": "geode.node-ids", | ||
"version": ">=1.16.0", | ||
"importance": "required" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters