Skip to content

Commit

Permalink
0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Xhuis committed Feb 10, 2019
1 parent 723a070 commit 4ca208c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
6 changes: 6 additions & 0 deletions YABSSM.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,12 @@ public override void SetupShop(int type, Chest shop, ref int nextSlot)
shop.item[nextSlot].shopCustomPrice = Item.buyPrice(0, 25, 0, 0);
nextSlot++;
}
if (NPC.downedFishron)
{
shop.item[nextSlot].SetDefaults(ItemID.TruffleWorm);
shop.item[nextSlot].shopCustomPrice = Item.buyPrice(0, 25, 0, 0);
nextSlot++;
}
if (NPC.downedHalloweenTree)
{
shop.item[nextSlot].SetDefaults(ItemID.PumpkinMoonMedallion);
Expand Down
2 changes: 1 addition & 1 deletion build.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
author = Ilysen
version = 0.3
version = 0.4
displayName = Yet Another Boss Summon Shop
homepage = https://github.com/Xhuis/YABSSM
8 changes: 7 additions & 1 deletion description.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
YABSS is a simple mod that makes the Dryad sell boss summoning items when you defeat the respective vanilla boss. The price for these items depends on the difficulty of the boss and placement for progression.

Skeletron isn't included, since he serves primarily as a gateway boss, with little worthwhile loot.

After defeating the Wall of Flesh, she will sell Innocent, Helpless Bunnies that can summon the Wall of Flesh without murdering the Guide. After defeating Plantera, she will sell a Peppery Fruit that summons her without need of a bulb. Finally, downing the Moon Lord will cause her to sell Cracked Relics that summon him instantly instead of after a delay.

If you have a mod like Calamity that already has this function built in, you won't need this mod.
If you have a mod like Calamity that already has this function built in, you won't need this mod.

Now with summoning items for the Wall of Flesh, Plantera, and Moon Lord as of 0.3.

Now with Fishron as of 0.4.

0 comments on commit 4ca208c

Please sign in to comment.