-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add item query to make all variants for sale
- Loading branch information
Showing
9 changed files
with
160 additions
and
73 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
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
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
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
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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# [Item Queries](https://stardewvalleywiki.com/Modding:Item_queries) | ||
|
||
These are useful for populating shops and machine output rules. | ||
|
||
## mushymato.TrinketTinker_CREATE_TRINKET | ||
|
||
``` | ||
mushymato.TrinketTinker_CREATE_TRINKET <trinket id> [level] [variant] | ||
``` | ||
|
||
Create a new trinket item. If the trinket has tinker data, set level and variant. Useful for producing a trinket at specified level/variant. | ||
|
||
Setting level or variant to "R" will randomize the level or variant. | ||
|
||
## mushymato.TrinketTinker_CREATE_TRINKET_ALL_VARIANTS | ||
|
||
``` | ||
mushymato.TrinketTinker_CREATE_TRINKET_ALL_VARIANTS <trinket id> [level] | ||
``` | ||
|
||
Create all variants of a trinket (with tinker data). Useful for making a shop sell all variants of a trinket instead of making the player roll for them. | ||
|
||
Setting level to "R" will randomize the level once, and then set trinkets created by this query to that level. |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Trinket Colorizer ![Trinket Colorizer](~/images/favicon.png) | ||
|
||
The trinket colorizer is a big craftable [machine](https://stardewvalleywiki.com/Modding:Machines) that can be purchased from [the Blacksmith](https://stardewvalleywiki.com/Blacksmith) for 50 [Gold Bars](https://stardewvalleywiki.com/Gold_Bar) once the [Anvil](https://stardewvalleywiki.com/Anvil) recipe is obtained. Trinkets must have at least 2 [variants](2-Variant.md) and `CanBeReforged` set to true in order to use the colorizer. | ||
|
||
Consumes 15 [Omni Geode](https://stardewvalleywiki.com/Omni_Geode) to reroll the variant on a TrinketTinker trinket, no effect on vanilla trinkets. | ||
|
||
The colorizer will never roll the same variant twice in a row. Anvils have similar rule applied to them for TrinketTinker trinkets. | ||
|
||
Implementation wise, the colorizer is a standard machine with qualified ID `(BC)mushymato.TrinketTinker_TrinketColorizer` and a single complex output machine rule. Mods are can add more ways to obtain this machine or prepend the colorizer with special upgrade rules for their trinkets. |
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