-
Notifications
You must be signed in to change notification settings - Fork 10
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
Showing
10 changed files
with
1,464 additions
and
0 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
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() | ||
{ | ||
|
||
} | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Oops, something went wrong.