-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ilysen
committed
Feb 4, 2020
1 parent
2686c66
commit d51d06d
Showing
5 changed files
with
43 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
using System.ComponentModel; | ||
using Terraria.ID; | ||
using Terraria.ModLoader.Config; | ||
|
||
namespace YABSSM | ||
{ | ||
public class YABSSMConfig : ModConfig | ||
{ | ||
public enum PossibleNPCs : short | ||
{ | ||
Clothier = NPCID.Clothier, | ||
Dryad = NPCID.Dryad, | ||
Merchant = NPCID.Merchant, | ||
Demolitionist = NPCID.Demolitionist, | ||
DyeTrader = NPCID.DyeTrader, | ||
ArmsDealer = NPCID.ArmsDealer, | ||
Stylist = NPCID.Stylist, | ||
Painter = NPCID.Painter, | ||
GoblinTinkerer = NPCID.GoblinTinkerer, | ||
WitchDoctor = NPCID.WitchDoctor, | ||
Mechanic = NPCID.Mechanic, | ||
PartyGirl = NPCID.PartyGirl | ||
} | ||
|
||
public override ConfigScope Mode => ConfigScope.ServerSide; | ||
|
||
[Label("Vendor NPC")] | ||
[Tooltip("Dictates which town NPC sells boss summon items.")] | ||
[DefaultValue(PossibleNPCs.Clothier)] | ||
public PossibleNPCs vendorNPC; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
author = Ilysen | ||
version = 1.0.0.5 | ||
version = 1.0.0.6 | ||
displayName = Yet Another Boss Summon Shop | ||
homepage = https://forums.terraria.org/index.php?threads/avas-mods-thaumaturgy-challenge-runes-yabssm.81892/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters