diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-12-24 07:40:59 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-12-24 07:40:59 -0300 |
commit | 4e37370e4690529d1fb2e7b8ef8764f470d5289f (patch) | |
tree | dcd74b57ce02a568cc32dffdb9d4c6d9fe1c6635 /npc/functions/aurora.txt | |
parent | e90014e862ca97244f73c5c3ebbfa3b9c8373de4 (diff) | |
download | serverdata-4e37370e4690529d1fb2e7b8ef8764f470d5289f.tar.gz serverdata-4e37370e4690529d1fb2e7b8ef8764f470d5289f.tar.bz2 serverdata-4e37370e4690529d1fb2e7b8ef8764f470d5289f.tar.xz serverdata-4e37370e4690529d1fb2e7b8ef8764f470d5289f.zip |
Add craft recipes for the scrolls. Now that grenades aren't rare anymore...
...Replace whatever was giving them with the newer items. Often.
Diffstat (limited to 'npc/functions/aurora.txt')
-rw-r--r-- | npc/functions/aurora.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/npc/functions/aurora.txt b/npc/functions/aurora.txt index 3cf52ee1b..dc3f8d987 100644 --- a/npc/functions/aurora.txt +++ b/npc/functions/aurora.txt @@ -161,11 +161,11 @@ function script FYT { case FY_MISC: switch (.@l) { case 1: - return any(SmokeGrenade, ScentGrenade, Grenade, Lockpicks); + return any(SmokeGrenade, ScentGrenade, Grenade, DeathPotion, Lockpicks); case 2: return any(MysteriousBottle, TreasureMap); case 3: - return any(ArcmageBoxset, MercBoxA); + return any(ArcmageBoxset, MercBoxA, ScrollSMaggot); } break; case FY_BP: @@ -179,7 +179,7 @@ function script FYT { case 4: return any(EquipmentBlueprintD, AlchemyBlueprintD); case 5: - return any(EquipmentBlueprintE, AlchemyBlueprintE); + return any(EquipmentBlueprintE, AlchemyBlueprintE, AncientBlueprint); } break; case FY_WARP: @@ -232,9 +232,9 @@ function script FYT { break; // Single cases doesn't needs break case FY_HEAL: - return any(SpearmintTea, Coffee, ClothoLiquor); + return any(SpearmintTea, Coffee, ClothoLiquor, BottleOfDivineWater); case FY_MAGIC: - return any(FluoPowder, Quill, ScholarshipBadge);; + return any(FluoPowder, Quill, ScholarshipBadge, ScrollSWolvern); } return Exception("Invalid cast to FYEIT: "+.@t+" (Lv "+.@l+")", RB_IRCBROADCAST|RB_DEBUGMES|RB_GLOBALANNOUNCE, Bread); |