-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ Xedra Evolved ] Species based snares [Robot, Cyborg, Nether, Change…
…ling] (#73867) * Species based trap Co-Authored-By: RenechCDDA <[email protected]> * Apply suggestions from code review Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Additional traps, needs recipes still * Apply suggestions from code review Co-authored-by: Jianxiang Wang (王健翔) <[email protected]> * Update data/mods/Xedra_Evolved/items/alchemy.json * hedge snare * Update alchemy.json * Apply suggestions from code review Co-authored-by: RenechCDDA <[email protected]> * Update src/trapfunc.cpp Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Update spellbooks_hedge.json * Update data/mods/Xedra_Evolved/items/spell_learning_items/spellbooks_hedge.json Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Update spell_components.json * Recipe for inventors * Update misc.json * Update data/json/effects.json * Update data/json/effects.json * Update misc.json * Apply suggestions from code review --------- Co-authored-by: RenechCDDA <[email protected]> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Jianxiang Wang (王健翔) <[email protected]>
- Loading branch information
1 parent
7f60041
commit 36d0635
Showing
18 changed files
with
314 additions
and
4 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 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,50 @@ | ||
[ | ||
{ | ||
"id": "stunning_qr_trap", | ||
"type": "TOOL", | ||
"name": "stunning QR trap", | ||
"category": "traps", | ||
"properties": { "capture_species": "ROBOT" }, | ||
"description": "A jagged and eldritch looking QR code ready to be placed wherever you are concerned about mechanical eyes. Will trap robots if they wander into it.", | ||
"weight": "1 g", | ||
"volume": "5 ml", | ||
"longest_side": "5 cm", | ||
"price": "250 USD", | ||
"price_postapoc": "5 USD", | ||
"material": "plastic", | ||
"symbol": "*", | ||
"color": "light_gray", | ||
"flags": [ "SINGLE_USE" ], | ||
"use_action": { | ||
"type": "place_trap", | ||
"trap": "tr_species_snare", | ||
"moves": 150, | ||
"practice": 2, | ||
"done_message": "You set the QR code." | ||
} | ||
}, | ||
{ | ||
"id": "stunning_arg_trap", | ||
"type": "TOOL", | ||
"name": "stunning arg trap", | ||
"category": "traps", | ||
"properties": { "capture_species": "CYBORG" }, | ||
"description": "A jagged and eldritch looking QR code ready to be placed wherever you are concerned about mechanical eyes. Will trap cyborgs if they wander into it.", | ||
"weight": "1 g", | ||
"volume": "5 ml", | ||
"longest_side": "5 cm", | ||
"price": "250 USD", | ||
"price_postapoc": "5 USD", | ||
"material": "plastic", | ||
"symbol": "*", | ||
"color": "light_gray", | ||
"flags": [ "SINGLE_USE" ], | ||
"use_action": { | ||
"type": "place_trap", | ||
"trap": "tr_species_snare", | ||
"moves": 150, | ||
"practice": 2, | ||
"done_message": "You set the QR code." | ||
} | ||
} | ||
] |
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 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
Oops, something went wrong.