Skip to content

Commit

Permalink
💎 v0.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
Jofairden committed Aug 5, 2017
1 parent d5d3723 commit 25b11f4
Show file tree
Hide file tree
Showing 10 changed files with 1,464 additions and 0 deletions.
26 changes: 26 additions & 0 deletions Items/MagicDice.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
using Terraria;
using Terraria.ID;
using Terraria.ModLoader;

namespace Loot.Items
{
public class MagicDice : ModItem
{
public override void SetDefaults()
{
item.maxStack = 999;
item.consumable = true;
item.value = 10000;
item.rare = 3;
}
public override void SetStaticDefaults()
{
DisplayName.SetDefault("Magic Dice");
Tooltip.SetDefault("While holding, right click a piece of equipment in your inventory to reroll modifiers");
}
public override void AddRecipes()
{

}
}
}
Binary file added Items/MagicDice.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Items/Thumbs.db
Binary file not shown.
Loading

0 comments on commit 25b11f4

Please sign in to comment.