Commit of decompiled and "updated" code.

This commit is contained in:
Big Duckie
2022-07-03 14:13:26 -06:00
parent 3d34e53842
commit e1441e74a5
731 changed files with 18423 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
using Terraria;
using Terraria.ModLoader;
using Terraria.ID;
namespace FabusMod.Items.Vanity.Leafy;
[AutoloadEquip(EquipType.Body)]
public class LeafyChest : ModItem
{
public override void SetStaticDefaults()
{
DisplayName.SetDefault("Leafia Chest");
Tooltip.SetDefault("~~ Donator Item ~~");
}
public override void SetDefaults()
{
Item.width = 30;
Item.height = 22;
Item.rare = ItemRarityID.Blue;
Item.vanity = true;
Item.value = Item.sellPrice(0, 0, 20, 0);
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 439 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 809 B

+24
View File
@@ -0,0 +1,24 @@
using Terraria;
using Terraria.ModLoader;
using Terraria.ID;
namespace FabusMod.Items.Vanity.Leafy;
[AutoloadEquip(EquipType.Head)]
public class LeafyHat : ModItem
{
public override void SetStaticDefaults()
{
DisplayName.SetDefault("Leafia Hat");
Tooltip.SetDefault("~~ Donator Item ~~");
}
public override void SetDefaults()
{
Item.width = 22;
Item.height = 10;
Item.rare = ItemRarityID.Blue;
Item.vanity = true;
Item.value = Item.sellPrice(0, 0, 20, 0);
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 456 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

+24
View File
@@ -0,0 +1,24 @@
using Terraria;
using Terraria.ModLoader;
using Terraria.ID;
namespace FabusMod.Items.Vanity.Leafy;
[AutoloadEquip(EquipType.Legs)]
public class LeafyLegs : ModItem
{
public override void SetStaticDefaults()
{
DisplayName.SetDefault("Leafia Legs");
Tooltip.SetDefault("~~ Donator Item ~~");
}
public override void SetDefaults()
{
Item.width = 22;
Item.height = 18;
Item.rare = ItemRarityID.Blue;
Item.vanity = true;
Item.value = Item.sellPrice(0, 0, 20, 0);
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 307 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB