diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-08-10 22:26:57 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-08-10 22:26:57 -0300 |
commit | bce575ea45659073b35a4c40e727cf867d03b712 (patch) | |
tree | d53c55643d82546fe17d711b85b9c78a644ef371 /npc | |
parent | c52867f3e29d35044fad5c74e42cf5f28809b3e3 (diff) | |
download | serverdata-bce575ea45659073b35a4c40e727cf867d03b712.tar.gz serverdata-bce575ea45659073b35a4c40e727cf867d03b712.tar.bz2 serverdata-bce575ea45659073b35a4c40e727cf867d03b712.tar.xz serverdata-bce575ea45659073b35a4c40e727cf867d03b712.zip |
I wonder if this won't be too big
Diffstat (limited to 'npc')
-rw-r--r-- | npc/magic/transmigration.txt | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/npc/magic/transmigration.txt b/npc/magic/transmigration.txt index cd04b9fcd..666f176ef 100644 --- a/npc/magic/transmigration.txt +++ b/npc/magic/transmigration.txt @@ -78,6 +78,26 @@ OnCall: end; } break; + // Snake Skin Chain + case MountainSnakeSkin: + if (!transcheck(BlackMambaSkin, 1)) { + dispbottom l("Not enough items!"); + end; + } + break; + case SnakeSkin: + if (!transcheck(MountainSnakeSkin, 1)) { + dispbottom l("Not enough items!"); + end; + } + break; + case CaveSnakeSkin: + if (!transcheck(SnakeSkin, 1)) { + dispbottom l("Not enough items!"); + end; + } + break; + default: Exception("ERROR, INVALID TRANSMIGRATION REAGENTS", RB_DEFAULT|RB_SPEECH|RB_ISFATAL); break; } |