diff options
Diffstat (limited to 'npc/017-1')
-rw-r--r-- | npc/017-1/pet_detective.txt | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/npc/017-1/pet_detective.txt b/npc/017-1/pet_detective.txt index 7c733da64..cdc0e3407 100644 --- a/npc/017-1/pet_detective.txt +++ b/npc/017-1/pet_detective.txt @@ -72,6 +72,9 @@ L_Menu: rif(PDQ_CheckGHQ(Snake) >= 10000 && !countitem(TamedSnakeEgg), l("Tamed Snake")), rif(PDQ_CheckGHQ(MountainSnake) >= 10000 && !countitem(AggressiveSnakeEgg), l("Aggressive Snake")), rif(#LOGIN_ALLTIME >= 6 && !countitem(PiouEgg), l("Piou")), + rif(#EVFEATS & EVFEAT_EASTER && !countitem(BhopEgg), l("Bhop Fluffy")), + rif(#EVFEATS & EVFEAT_VALENTINE && !countitem(DoggyDog), l("Doggy Dog")), + rif(#EVFEATS & EVFEAT_CHRISTMAS && !countitem(CattyCat), l("Catty Cat")), l("Nothing at the moment."); mes ""; @@ -116,6 +119,18 @@ L_Menu: if (PDQ_InnerSwitch(Piou, PiouFeathers, 80)) .stock-=1; break; + case 11: + if (PDQ_InnerSwitch(BhopFluffy, Coal, 120)) + .stock-=1; + break; + case 12: + if (PDQ_InnerSwitch(Toto, Coal, 120)) + .stock-=1; + break; + case 13: + if (PDQ_InnerSwitch(WhiteCat, Coal, 120)) + .stock-=1; + break; default: closedialog; goodbye; |