diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-08-10 22:46:44 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-08-10 22:46:44 -0300 |
commit | 2157c812342c121a26decb1dcbb01c6849c7538e (patch) | |
tree | bf6bf4f6c77d5e1befcd9a29f8ec617375ed4e29 /npc/magic | |
parent | eb8ba4507abcb56286bcca784531174df16b4db8 (diff) | |
download | serverdata-2157c812342c121a26decb1dcbb01c6849c7538e.tar.gz serverdata-2157c812342c121a26decb1dcbb01c6849c7538e.tar.bz2 serverdata-2157c812342c121a26decb1dcbb01c6849c7538e.tar.xz serverdata-2157c812342c121a26decb1dcbb01c6849c7538e.zip |
Another free Transmigration Recipe, is the Raw Coal one. But it is expensive.
Connor, to catch up with that, is now with same ratio.
Diffstat (limited to 'npc/magic')
-rw-r--r-- | npc/magic/transmigration.txt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/npc/magic/transmigration.txt b/npc/magic/transmigration.txt index fed1b7a36..18b26ad50 100644 --- a/npc/magic/transmigration.txt +++ b/npc/magic/transmigration.txt @@ -26,6 +26,7 @@ OnCall: mes ""; menuint l("Crazy Rum"), CrazyRum, + l("Coal"), Coal, rif(false, l("Downgrade Snake Skin")), SnakeSkin, rif(false, l("Downgrade Snake Egg")), SnakeEgg, rif(false, l("Downgrade Snake Tongue")), SnakeTongue, @@ -43,6 +44,9 @@ OnCall: mesc l("* @@/@@ @@", countitem(Plushroom), 10, getitemlink(Plushroom)); mesc l("* @@/@@ @@", countitem(Milk), 1, getitemlink(Milk)); break; + case Coal: + mesc l("* @@/@@ @@", countitem(WoodenLog), 5, getitemlink(WoodenLog)); + break; case MoubooFigurine: mesc l("* @@/@@ @@", countitem(WoodenLog), 1, getitemlink(WoodenLog)); break; @@ -122,6 +126,12 @@ OnCall: end; } break; + case Coal: + if (!transcheck(WoodenLog, 5)) { + dispbottom l("Not enough items!"); + end; + } + break; // Snake Skin Chain case MountainSnakeSkin: if (!transcheck(BlackMambaSkin, 1)) { |