diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-06-01 00:36:43 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-06-01 00:36:43 -0300 |
commit | 8f4b058574462b7fd3d481ef545b90e11a768679 (patch) | |
tree | 6e1d987faf57d3e6607df0dfa2f60e0a5eeeb5d0 /npc | |
parent | d8ddf518629e39e0e1e8e759dfd9eb46bebc92b5 (diff) | |
download | serverdata-8f4b058574462b7fd3d481ef545b90e11a768679.tar.gz serverdata-8f4b058574462b7fd3d481ef545b90e11a768679.tar.bz2 serverdata-8f4b058574462b7fd3d481ef545b90e11a768679.tar.xz serverdata-8f4b058574462b7fd3d481ef545b90e11a768679.zip |
You can now find some blueprints on treasure chests
Diffstat (limited to 'npc')
-rw-r--r-- | npc/003-8/intensebeard.txt | 2 | ||||
-rw-r--r-- | npc/functions/treasure.txt | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/npc/003-8/intensebeard.txt b/npc/003-8/intensebeard.txt index b42faaed3..f72b14292 100644 --- a/npc/003-8/intensebeard.txt +++ b/npc/003-8/intensebeard.txt @@ -152,7 +152,7 @@ L_SemLivro: mesq l("That's too bad, because I could teach you some amazing craft skills! This will need to wait another day, I guess. Oh well."); next; mesn; - mesq l("Better ask your parents for one... Failing that, maybe someone in the Alliance can gift you one."); + mesq l("Better ask your parents for one... Failing that, maybe someone can gift you one. Not sure what you'll need to do for that, though!"); close; OnInit: diff --git a/npc/functions/treasure.txt b/npc/functions/treasure.txt index 4ddbee4ed..297bf5491 100644 --- a/npc/functions/treasure.txt +++ b/npc/functions/treasure.txt @@ -37,9 +37,9 @@ function script TreasureBox { if (.@t % 149 == 0 || .@r < .@ur_rate) .@loot=any(AtroposMixture, GoldenApple, DivineApple, MercBoxA, MoveSpeedPotion, Shemagh, EverburnPowder, IridiumOre, PlatinumOre); else if (.@t % 50 == 0 || .@r < 100) - .@loot=any(Grenade, SnakeEgg, LachesisBrew, ArrowAmmoBox, CoinBag, SilverGift, TerraniteOre, LeadOre, TinOre, SilverOre, GoldOre, TitaniumOre, FluoPowder); + .@loot=any(Grenade, SnakeEgg, LachesisBrew, ArrowAmmoBox, CoinBag, SilverGift, TerraniteOre, LeadOre, TinOre, SilverOre, GoldOre, TitaniumOre, FluoPowder, AlchemyBlueprintB); else if (.@r < 1000 || .@t == 0) - .@loot=any(MoubooSteak, ClothoLiquor, Coal, RedPlushWine, HastePotion, StrengthPotion, Dagger, BronzeGift, IronOre, CopperOre); + .@loot=any(MoubooSteak, ClothoLiquor, Coal, RedPlushWine, HastePotion, StrengthPotion, Dagger, BronzeGift, IronOre, CopperOre, AlchemyBlueprintA); else if (.@r < 4000) .@loot=any(Croconut, Potatoz, MoubooSteak, ClothoLiquor, Coal, SmallMushroom, HastePotion, StrengthPotion, Beer); else |