Skip to content

Commit

Permalink
Updated recipes
Browse files Browse the repository at this point in the history
  • Loading branch information
vizthex123 authored Sep 11, 2018
1 parent ede5f9b commit c4cfad1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Accessories/LargeGCoin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,14 @@ public override void SetDefaults()
item.rare = 2;
item.maxStack = 1;
item.accessory = true;
item.defense = 3;
item.defense = 4;
}

public override void AddRecipes()
{
ModRecipe recipe = new ModRecipe(mod);
recipe.AddIngredient(mod.GetItem("CompressedGCoin"), 4);
recipe.AddIngredient(mod.GetItem("LargeSCoin"), 1);
recipe.AddTile(TileID.Anvils);
recipe.SetResult(this);
recipe.AddRecipe();
Expand Down
3 changes: 2 additions & 1 deletion Accessories/LargePCoin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,14 @@ public override void SetDefaults()
item.rare = 3;
item.maxStack = 1;
item.accessory = true;
item.defense = 4;
item.defense = 8;
}

public override void AddRecipes()
{
ModRecipe recipe = new ModRecipe(mod);
recipe.AddIngredient(mod.GetItem("CompressedPCoin"), 4);
recipe.AddIngredient(mod.GetItem("LargeGCoin"), 1);
recipe.AddTile(TileID.Anvils);
recipe.SetResult(this);
recipe.AddRecipe();
Expand Down
1 change: 1 addition & 0 deletions Accessories/LargeSCoin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ public override void AddRecipes()
{
ModRecipe recipe = new ModRecipe(mod);
recipe.AddIngredient(mod.GetItem("CompressedSCoin"), 4);
recipe.AddIngredient(mod.GetItem("LargeCCoin"), 1);
recipe.AddTile(TileID.Anvils);
recipe.SetResult(this);
recipe.AddRecipe();
Expand Down

0 comments on commit c4cfad1

Please sign in to comment.