-
Notifications
You must be signed in to change notification settings - Fork 287
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(content):
looks_like
, trigger message with spells, and can ala…
…rm for trap (#3939) * feat(content): expand trap options, some related code fixes * style(autofix.ci): automated formatting * Do thing * Update doc/src/content/docs/en/mod/json/reference/graphics/external_tileset.md Co-authored-by: scarf <[email protected]> --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: scarf <[email protected]>
- Loading branch information
1 parent
4ecf356
commit 7d54e3e
Showing
11 changed files
with
109 additions
and
16 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
Binary file modified
BIN
+788 Bytes
(100%)
data/json/external_tileset/External_Tileset_DP_Normal.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,26 @@ | ||
[ | ||
{ | ||
"id": "spell_trap_can_alarm_trigger", | ||
"type": "SPELL", | ||
"name": { "str": "Can Alarm Trigger" }, | ||
"description": "Has to be a target_attack spell instead of noise because spellcasting traps are a hacky mess.", | ||
"valid_targets": [ "self", "ally", "hostile" ], | ||
"flags": [ "SILENT", "NO_EXPLOSION_VFX" ], | ||
"min_aoe": 2, | ||
"max_aoe": 2, | ||
"effect": "target_attack", | ||
"extra_effects": [ { "id": "spell_trap_can_alarm_effect" } ] | ||
}, | ||
{ | ||
"type": "SPELL", | ||
"id": "spell_trap_can_alarm_effect", | ||
"name": { "str": "Can Alarm Effect" }, | ||
"description": "And this triggers the actual sound ", | ||
"sound_description": "empty cans clattering!", | ||
"min_damage": 25, | ||
"max_damage": 25, | ||
"valid_targets": [ "ground" ], | ||
"flags": [ "NO_EXPLOSION_VFX" ], | ||
"effect": "noise" | ||
} | ||
] |
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