diff options
author | Haru <haru@dotalux.com> | 2017-06-03 22:47:54 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2017-06-03 22:47:54 +0200 |
commit | 68059ee62a223edb323abba0bc980faab8ed4b52 (patch) | |
tree | f50fddbe254d80033eeb74752843ebb6d0eda92f /npc/re/merchants/card_separation.txt | |
parent | 1b02f9269f15582c7d211f1d1a3a0c1c7ce68a88 (diff) | |
download | hercules-68059ee62a223edb323abba0bc980faab8ed4b52.tar.gz hercules-68059ee62a223edb323abba0bc980faab8ed4b52.tar.bz2 hercules-68059ee62a223edb323abba0bc980faab8ed4b52.tar.xz hercules-68059ee62a223edb323abba0bc980faab8ed4b52.zip |
Revert "Unify specialeffect, convert legacy scripts (#1746)"
This reverts commit 19883c583e5e1471c87ae80e67f34882a7e75bc6.
The commit was squashed by accident, my fault. I'm merging the PR again,
this time preserving the indivisual commits.
Diffstat (limited to 'npc/re/merchants/card_separation.txt')
-rw-r--r-- | npc/re/merchants/card_separation.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/re/merchants/card_separation.txt b/npc/re/merchants/card_separation.txt index b1f6754a5..0e5b31ea2 100644 --- a/npc/re/merchants/card_separation.txt +++ b/npc/re/merchants/card_separation.txt @@ -353,13 +353,13 @@ // Display corresponding effect. if (!.@equip_safe && .@card_break) - specialeffect(EF_LORD, AREA, playerattached()); + specialeffect2 EF_LORD; else if (.@equip_safe && .@card_break) - specialeffect(EF_SUI_EXPLOSION, AREA, playerattached()); + specialeffect2 EF_SUI_EXPLOSION; else if (!.@equip_safe && !.@card_break) - specialeffect(EF_FIREPILLAR, AREA, playerattached()); + specialeffect2 EF_FIREPILLAR; else - specialeffect(EF_MAXPOWER, AREA, playerattached()); + specialeffect2 EF_MAXPOWER; // Output results. mes "-- Result of Card Separation --"; |