Updated Titan Forge's item.

This commit is contained in:
FyloZ 2020-07-09 19:46:40 -04:00
parent e1ceffac89
commit 70f3ccf445
4 changed files with 7 additions and 6 deletions

View File

@ -18,8 +18,8 @@ namespace Decimation.Content.Items.Misc.Souls
item.width = refItem.width; item.width = refItem.width;
item.height = refItem.height; item.height = refItem.height;
this.item.maxStack = 999; item.maxStack = 999;
item.value = 50000; item.value = Item.sellPrice(silver: 3);
ItemID.Sets.AnimatesAsSoul[this.item.type] = true; ItemID.Sets.AnimatesAsSoul[this.item.type] = true;
ItemID.Sets.ItemIconPulse[this.item.type] = true; ItemID.Sets.ItemIconPulse[this.item.type] = true;

View File

@ -1,5 +1,6 @@
using Decimation.Content.Items.Misc.Souls; using Decimation.Content.Items.Misc.Souls;
using Decimation.Lib.Items; using Decimation.Lib.Items;
using Terraria;
using Terraria.ID; using Terraria.ID;
using Terraria.ModLoader; using Terraria.ModLoader;
@ -13,9 +14,10 @@ namespace Decimation.Content.Items.Placeable
protected override void InitPlaceable() protected override void InitPlaceable()
{ {
item.width = 20; item.width = 32;
item.height = 20; item.height = 32;
this.item.maxStack = 1; item.value = Item.sellPrice(gold: 42, silver: 25);
item.maxStack = 1;
} }
protected override ModRecipe GetRecipe() protected override ModRecipe GetRecipe()

Binary file not shown.

Before

Width:  |  Height:  |  Size: 768 B

After

Width:  |  Height:  |  Size: 528 B

View File

@ -14,7 +14,6 @@ namespace Decimation.Content.Items.Weapons
protected override string ItemTooltip => "Uses pebbles and marbles as ammo"; protected override string ItemTooltip => "Uses pebbles and marbles as ammo";
protected override DamageType DamagesType => DamageType.Ranged; protected override DamageType DamagesType => DamageType.Ranged;
protected override int Damages => 7; protected override int Damages => 7;
protected override string AmmoName => "Pebble";
protected override int AmmoId => ModContent.ItemType<Pebble>(); protected override int AmmoId => ModContent.ItemType<Pebble>();
protected override void InitWeapon() protected override void InitWeapon()