Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update base-spells.yaml - added anti-magic room checks for invoke/charge/perc #6848

Merged
merged 3 commits into from
Jun 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion combat-trainer.lic
Original file line number Diff line number Diff line change
Expand Up @@ -2784,7 +2784,7 @@ class TrainerProcess
when /^PercMana$/i
moon_mage_perc(game_state)
when /^Perc$/i
DRC.bput('perc', 'You reach out', 'Strangely, you can sense absolutely nothing.') unless game_state.retreating?
DRC.bput('perc', 'You reach out', 'Strangely, you can sense absolutely nothing.', 'Something in the area is interfering with your ability to perceive power.') unless game_state.retreating?
when /^Perc Health$/i
DRC.bput('perc heal', 'You close your eyes')
when /^Astro$/i
Expand Down
4 changes: 4 additions & 0 deletions data/base-spells.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ charge_messages:
- You fail to channel
- you find it too clumsy to charge
- How much do you want to charge
- Something in the area is interfering with your magical senses.

invoke_messages:
- Images of streaking stars falling from the heavens flash
Expand All @@ -31,6 +32,7 @@ invoke_messages:
- you find it too clumsy to invoke
- You raise the (\w+) up, and a (\w+) glow surrounds it
- You prick your finger with the tip of your athame
- Something in the area is interfering with the magical device.

prep_messages:
- With rigid movements you prepare your body for the Embed the Cycle spell
Expand Down Expand Up @@ -142,6 +144,8 @@ prep_messages:
- Please don't do that here
- You cannot use the tattoo while maintaining the effort to stay hidden
- As you attempt to prepare the spell, a sense of overwhelming peace washes over you
# Tattoo failed to invoke due to anti-magic room
- Something in the area is interfering with the magical device.
# You tried to target a spell but there is nothing left to face
- There is nothing else to face

Expand Down
Loading