forked from CleverRaven/Cataclysm-DDA
-
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.
Magiclysm - Golems (CleverRaven#35658)
* Adds 3 kinds of golems. They still need more work. * Changes to golems. Still not done. Add broken golems and effect/spells later. * Add slow effect. * Add spells for golems. * Update monsterspells.json * Update effects.json * Update monsters.json * Create constructs.json * Create deconstruction.json * Update deconstruction.json * Update monsterspells.json * Edit golem descriptions. * Update deconstruction.json * Added golems to forest mon_group I didn't have a better idea where to add them. * Fix monsters weight. * Change weight from grams to kilograms. * Tweak spells. * Change valid targets for gas_attack spell Co-Authored-By: Curtis Merrill <[email protected]> * Lint * One more lint * Fix regeneration for lemure. * some fixes * remove merge error * more color fixes Co-authored-by: Curtis Merrill <[email protected]>
- Loading branch information
Showing
5 changed files
with
222 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
[ | ||
{ | ||
"type": "GENERIC", | ||
"id": "broken_claygolem", | ||
"symbol": "x", | ||
"color": "brown", | ||
"name": "broken clay golem", | ||
"category": "other", | ||
"description": "A broken clay golem, looking like piece of post-modern art. Could be smashed for clay.", | ||
"price": 10000, | ||
"material": [ "clay" ], | ||
"weight": "122 kg", | ||
"volume": "120 L", | ||
"bashing": 4, | ||
"cutting": 4, | ||
"to_hit": -3, | ||
"flags": [ "TRADER_AVOID", "NO_REPAIR" ] | ||
}, | ||
{ | ||
"type": "GENERIC", | ||
"id": "broken_stonegolem", | ||
"symbol": "x", | ||
"color": "light_gray", | ||
"name": "broken stone golem", | ||
"category": "other", | ||
"description": "A broken stone golem, not that much different from big boulder. Could be smashed for stone.", | ||
"price": 10000, | ||
"material": [ "stone" ], | ||
"weight": "162 kg", | ||
"volume": "120 L", | ||
"bashing": 4, | ||
"cutting": 4, | ||
"to_hit": -3, | ||
"flags": [ "TRADER_AVOID", "NO_REPAIR" ] | ||
}, | ||
{ | ||
"type": "GENERIC", | ||
"id": "broken_irongolem", | ||
"symbol": "x", | ||
"color": "dark_gray", | ||
"name": "broken iron golem", | ||
"category": "other", | ||
"description": "A broken iron golem, with all iron you would possibly ever need. Could be smashed for iron.", | ||
"price": 100000, | ||
"material": [ "iron" ], | ||
"weight": "945 kg", | ||
"volume": "120 L", | ||
"bashing": 30, | ||
"to_hit": -5, | ||
"flags": [ "TRADER_AVOID", "NO_REPAIR" ] | ||
} | ||
] |
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,29 @@ | ||
[ | ||
{ | ||
"result": "broken_claygolem", | ||
"type": "uncraft", | ||
"skill_used": "spellcraft", | ||
"difficulty": 2, | ||
"time": "4 h", | ||
"qualities": [ { "id": "HAMMER", "level": 1 } ], | ||
"components": [ [ [ "clay_lump", 231 ] ] ] | ||
}, | ||
{ | ||
"result": "broken_stonegolem", | ||
"type": "uncraft", | ||
"skill_used": "spellcraft", | ||
"difficulty": 4, | ||
"time": "4 h", | ||
"qualities": [ { "id": "HAMMER", "level": 1 } ], | ||
"components": [ [ [ "rock", 222 ] ], [ [ "sharp_rock", 33 ] ] ] | ||
}, | ||
{ | ||
"result": "broken_irongolem", | ||
"type": "uncraft", | ||
"skill_used": "spellcraft", | ||
"difficulty": 6, | ||
"time": "6 h", | ||
"qualities": [ { "id": "HAMMER", "level": 1 }, { "id": "SAW_M", "level": 1 } ], | ||
"components": [ [ [ "scrap", 800 ] ], [ [ "steel_lump", 200 ] ] ] | ||
} | ||
] |