diff --git a/Content/Items/Geltana.aseprite b/Content/Items/Geltana.aseprite index 792f24d..f1fb88a 100644 Binary files a/Content/Items/Geltana.aseprite and b/Content/Items/Geltana.aseprite differ diff --git a/Content/Items/Geltana.cs b/Content/Items/Geltana.cs index b5800cb..74cadbf 100644 --- a/Content/Items/Geltana.cs +++ b/Content/Items/Geltana.cs @@ -16,11 +16,18 @@ namespace continuity.Content.Items public override void SetDefaults() { Item.useStyle = 1; + Item.crit = 20; Item.useTurn = true; Item.autoReuse = true; + Item.knockBack = 3f; Item.useAnimation = 15; - Item.useTime = 15; - Item.damage = 25; + Item.DamageType = DamageClass.Melee; + Item.useTime = 13; + Item.damage = 24; + Item.width = 27; + Item.height = 70; + Item.value = Item.buyPrice(gold: 15); + Item.rare = ItemRarityID.Blue; } public override void AddRecipes() @@ -37,7 +44,7 @@ namespace continuity.Content.Items public override void OnHitNPC(Player player, NPC target, NPC.HitInfo hit, int damageDone) { - target.AddBuff(BuffID.OnFire, 180); + target.AddBuff(BuffID.OnFire, 120); } } } diff --git a/Content/Items/Geltana.png b/Content/Items/Geltana.png index d2a479d..993e191 100644 Binary files a/Content/Items/Geltana.png and b/Content/Items/Geltana.png differ diff --git a/Localization/en-US_Mods.continuity.hjson b/Localization/en-US_Mods.continuity.hjson index 6da8f03..3f12218 100644 --- a/Localization/en-US_Mods.continuity.hjson +++ b/Localization/en-US_Mods.continuity.hjson @@ -15,10 +15,10 @@ Items: { Geltana: { Tooltip: - ''' - Half the taste, twice the flame! - A [c/4572e3:gel-covered] katana that [c/B4202A:sets enemies on fire]. - ''' + ''' + Half the taste, twice the flame! + A [c/4572e3:gel-covered] katana that [c/B4202A:sets enemies on fire]. + ''' DisplayName: Geltana } }