示例#1
0
        public FishbowlToGoldfishItemRecipe(StarvationMod mymod) : base(mymod)
        {
            this.AddTile(TileID.WorkBenches);

            this.AddIngredient(ItemID.FishBowl);

            this.SetResult(ItemID.Goldfish);
        }
示例#2
0
        public BugNetItemRecipe(StarvationMod mymod) : base(mymod)
        {
            this.AddTile(TileID.WorkBenches);

            this.AddIngredient(ItemID.Wood, 5);
            this.AddIngredient(ItemID.Cobweb, 20);

            this.SetResult(ItemID.BugNet, 1);
        }
示例#3
0
 public override void Unload()
 {
     StarvationMod.Instance = null;
 }
示例#4
0
        ////////////////

        public StarvationMod()
        {
            StarvationMod.Instance = this;
        }