-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Magiclysm] Rock trolls actually turn to stone (#78510)
* Initial commit * Add rock troll stone statue
- Loading branch information
1 parent
a8af002
commit d7b4df7
Showing
4 changed files
with
37 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[ | ||
{ | ||
"type": "effect_on_condition", | ||
"id": "EOC_ROCK_TROLL_TURN_TO_STONE", | ||
"effect": [ { "npc_transform_radius": 0, "ter_furn_transform": "ter_rock_troll_death" } ] | ||
} | ||
] |
22 changes: 22 additions & 0 deletions
22
data/mods/Magiclysm/furniture_and_terrain/furniture_stone.json
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,22 @@ | ||
[ | ||
{ | ||
"type": "furniture", | ||
"id": "f_rock_troll_statue", | ||
"name": "rock troll statue", | ||
"description": "A massive block of stone in the shape of a rock troll, because it used to be a rock troll.", | ||
"looks_like": "f_statue", | ||
"symbol": "T", | ||
"color": "dark_gray", | ||
"move_cost_mod": -1, | ||
"coverage": 50, | ||
"required_str": 10, | ||
"flags": [ "PLACE_ITEM", "BLOCKSDOOR", "MINEABLE", "SIGN" ], | ||
"bash": { | ||
"str_min": 16, | ||
"str_max": 40, | ||
"sound": "smash!", | ||
"sound_fail": "thump.", | ||
"items": [ { "item": "rock", "count": [ 2, 12 ] } ] | ||
} | ||
} | ||
] |
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,7 @@ | ||
[ | ||
{ | ||
"type": "ter_furn_transform", | ||
"id": "ter_rock_troll_death", | ||
"furniture": [ { "result": "f_rock_troll_statue", "valid_furniture": [ "f_null", "f_straw_bed" ] } ] | ||
} | ||
] |