From 3f0a2440bbd88d80695fcf23c23a6eb0ecb630d1 Mon Sep 17 00:00:00 2001 From: bobfishkins23 Date: Tue, 12 Nov 2024 22:36:34 -0500 Subject: [PATCH 1/4] Heavy flail changes to accomodate frost flail --- Assets/Items/Snow/FrostFlail.png | Bin 0 -> 420 bytes Assets/Items/Snow/FrostFlailChain.png | Bin 0 -> 276 bytes Assets/Items/Snow/FrostFlailProjectile.png | Bin 0 -> 273 bytes Assets/Items/Snow/FrostFlailShard.png | Bin 0 -> 525 bytes Content/Items/BaseTypes/AbstractHeavyFlail.cs | 47 +- Content/Items/Snow/Weapons.FrostFlail.cs | 104 + Localization/en-US_Mods.StarlightRiver.hjson | 3981 +++++++++++++++++ 7 files changed, 4121 insertions(+), 11 deletions(-) create mode 100644 Assets/Items/Snow/FrostFlail.png create mode 100644 Assets/Items/Snow/FrostFlailChain.png create mode 100644 Assets/Items/Snow/FrostFlailProjectile.png create mode 100644 Assets/Items/Snow/FrostFlailShard.png create mode 100644 Content/Items/Snow/Weapons.FrostFlail.cs diff --git a/Assets/Items/Snow/FrostFlail.png b/Assets/Items/Snow/FrostFlail.png new file mode 100644 index 0000000000000000000000000000000000000000..b6d3276f0867b243f911bca36827655d3ff90fa2 GIT binary patch literal 420 zcmV;V0bBlwP)Px#1ZP1_K>z@;j|==^1poj5JWxzjMF0Q*|NZc^>g~zN$#cxxudlB*miT~xfKr9S zW_Y$EYr;H9d`L)06FrkNGczD1PZ1G&8X6iB4lD@?N;iv|xc~qF0d!JMQvg8b*k%9# z0QpHoK~#9!rPWc6gD?z5(Sf*e>*7F~{qJ@1uslrLFU$82aikc@5kH@8TWi~v^D124U6a0kTD;CC`NJldUtBXnPUtTrJj#q z7(m2V5->+W>`;e9If`p-7=wTT;=-gT@C?YANS1m4>uShho}%k#6sEtt)hOWuC3+J8 O00002p zKVwOdUoeBivm0qZPMfETV@SoVt>;hkwHR=)Uf37ys`29g|JOHsQ`=I++-??3nkHRv zPOx)MZqjY16;nNuZ8~FK$S(L^dp(2q0Vl(jWe@%O%nCQZS?aR2O~EKJfBS}DwV!vB z?D%+}1tr;7Zd_+L?a&|gvQsMiqdU$>b!b+euStyDb6)bJv}UHlGaEbqKWg`5-!o_b W5H!5iC0PM<5re0zpUXO@geCyllWTPV literal 0 HcmV?d00001 diff --git a/Assets/Items/Snow/FrostFlailProjectile.png b/Assets/Items/Snow/FrostFlailProjectile.png new file mode 100644 index 0000000000000000000000000000000000000000..db095199367ec35c2bb019c09b05ec13f58ff62f GIT binary patch literal 273 zcmeAS@N?(olHy`uVBq!ia0vp^8X(NV3?%C=ER6$F(g8jpu0Z<#-w#_}y)8a-+icno zes<~S@$yYiN^jk@Iy-~GqCK6*Bj|Ha?y6N*R!O&?zk6Z&FkAlQ zl2V7O$*Re3IL%l239a3!=CVqN>A2v%{~wvWoxaF13rjKIuqeFH@k7sZ_C%uvg>t?e zLd@TmrAaOhy4F!7#Ld1^V&hf&;A@)c literal 0 HcmV?d00001 diff --git a/Assets/Items/Snow/FrostFlailShard.png b/Assets/Items/Snow/FrostFlailShard.png new file mode 100644 index 0000000000000000000000000000000000000000..096eaa0852123c2cc75048098c32e9c4aca6d27d GIT binary patch literal 525 zcmV+o0`mQdP)_|@et4uaMavQ@jUBv|qD=uQsy)9Er^DYtFqscl zu6N|%!NL_lA^G(gOhXz-3Gt^QfY_VaIJ8gDQ+*oNBMk;%I!<-JUI(OID8bBoIFfv+ zF5Lm=kh#5y(=tl)V{a ChainAsset { get; } - protected static Asset BallAsset; + protected Asset BallAsset; readonly List chainPos = []; readonly List chainTarget = []; @@ -40,10 +40,15 @@ internal abstract class AbstractHeavyFlailProjectile : ModProjectile protected bool slowing; /// - /// The maximum length this flail can extend out to if it has room + /// The maximum length this flail can extend out to if it has room. /// public virtual int MaxLength { get; set; } = 200; + /// + /// The amount of times alternate chain styles should be repeated at the end of the chain. + /// + public virtual int AlternateStyleRepeats => 3; + public ref float Timer => ref Projectile.ai[0]; public ref float State => ref Projectile.ai[1]; public ref float Length => ref Projectile.ai[2]; @@ -55,11 +60,6 @@ internal abstract class AbstractHeavyFlailProjectile : ModProjectile /// public virtual void OnImpact(bool wasTile) { } - public override void SetStaticDefaults() - { - BallAsset = ModContent.Request(Texture); - } - public override void SetDefaults() { Projectile.friendly = true; @@ -68,6 +68,8 @@ public override void SetDefaults() Projectile.tileCollide = true; Projectile.timeLeft = 180; Projectile.penetrate = -1; + + BallAsset = ModContent.Request(Texture); } public override void AI() @@ -252,6 +254,8 @@ public override void OnHitNPC(NPC target, NPC.HitInfo hit, int damageDone) public override bool PreDraw(ref Color lightColor) { + int extraStyles = (ChainAsset.Height() - 44) / 22; + if (State == 0) { int max = (int)(Vector2.Distance(Owner.Center, Projectile.Center) / ChainAsset.Width()); @@ -259,15 +263,36 @@ public override bool PreDraw(ref Color lightColor) for (int k = 0; k < max; k++) { var pos = Vector2.Lerp(Projectile.Center, Owner.Center, k / (float)max); - Main.EntitySpriteDraw(ChainAsset.Value, pos - Main.screenPosition, null, new Color(Lighting.GetSubLight(pos)), Owner.Center.DirectionTo(pos).ToRotation() - 1.57f, ChainAsset.Size() / 2f, 1f, 0, 0); + Rectangle source = new Rectangle(0, 0, 8, 22); + + if (k > 1) + { + source.Y += 22; + + if (extraStyles > 0 && (k + 3) >= (max - extraStyles * AlternateStyleRepeats)) + source.Y += 22 * (extraStyles - (max - (k + 3)) / AlternateStyleRepeats); + } + + Main.EntitySpriteDraw(ChainAsset.Value, pos - Main.screenPosition, source, new Color(Lighting.GetSubLight(pos)), Owner.Center.DirectionTo(pos).ToRotation() - 1.57f, new Vector2(4, 11), 1f, 0, 0); } } - for (int k = 0; k < chainPos.Count; k++) + for (int k = 1; k < chainPos.Count; k++) { - Vector2 prev = k > 0 ? chainPos[k - 1] : Owner.Center; + Vector2 prev = chainPos[k - 1]; Vector2 curr = chainPos[k]; - Main.EntitySpriteDraw(ChainAsset.Value, curr - Main.screenPosition, null, new Color(Lighting.GetSubLight(curr)), curr.DirectionTo(prev).ToRotation() - 1.57f, ChainAsset.Size() / 2f, 1f, 0, 0); + + Rectangle source = new Rectangle(0, 0, 8, 22); + + if (k > 1) + { + source.Y += 22; + + if (extraStyles > 0 && (k + 3) >= (chainPos.Count - extraStyles * AlternateStyleRepeats)) + source.Y += 22 * (extraStyles - (chainPos.Count - (k + 3)) / AlternateStyleRepeats); + } + + Main.EntitySpriteDraw(ChainAsset.Value, curr - Main.screenPosition, source, new Color(Lighting.GetSubLight(curr)), curr.DirectionTo(prev).ToRotation() - 1.57f, new Vector2(4, 11), 1f, 0, 0); } Vector2 ballPos = Projectile.oldPosition + Projectile.Size / 2f; diff --git a/Content/Items/Snow/Weapons.FrostFlail.cs b/Content/Items/Snow/Weapons.FrostFlail.cs new file mode 100644 index 000000000..33b591706 --- /dev/null +++ b/Content/Items/Snow/Weapons.FrostFlail.cs @@ -0,0 +1,104 @@ +using StarlightRiver.Content.Items.BaseTypes; +using StarlightRiver.Content.Items.Forest; +using StarlightRiver.Content.Tiles.Misc; +using StarlightRiver.Core.Systems.CameraSystem; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Terraria.ID; + +namespace StarlightRiver.Content.Items.Snow +{ + internal class FrostFlail : AbstractHeavyFlail + { + public override string Texture => AssetDirectory.SnowItem + Name; + + public override int ProjType => ModContent.ProjectileType(); + + public override void SetStaticDefaults() + { + DisplayName.SetDefault("Heavy Flail"); + Tooltip.SetDefault("Hold to swing a monstrous ball of ice\nCreates icy shards on impact, inflicting frostburn"); + } + + public override void SetDefaults() + { + base.SetDefaults(); + Item.rare = ItemRarityID.Blue; + Item.damage = 14; + } + + public override void AddRecipes() + { + Recipe recipe = CreateRecipe(); + recipe.AddIngredient(ItemID.IceBlock, 99); + recipe.AddIngredient(ModContent.ItemType(), 1); + recipe.AddTile(TileID.Anvils); + recipe.Register(); + } + } + + internal class FrostFlailProjectile : AbstractHeavyFlailProjectile + { + public override string Texture => AssetDirectory.SnowItem + Name; + + public override Asset ChainAsset => Assets.Items.Snow.FrostFlailChain; + + public override int MaxLength => 160; + + public override void OnImpact(bool wasTile) + { + Helpers.Helper.PlayPitched("Magic/FrostHit", 1, 0, Projectile.Center); + + if (Owner == Main.LocalPlayer) + CameraSystem.shake += 8; + + for (int k = 0; k < 50; k++) + { + Dust.NewDust(Projectile.position, Projectile.width, Projectile.height, DustID.Ice); + } + + for (int k = 0; k < 3; k++) + { + Projectile.NewProjectile(Projectile.GetSource_FromThis(), Projectile.Center, Vector2.One.RotatedByRandom(6.28f) * 5, ModContent.ProjectileType(), Projectile.damage / 2, 0, Projectile.owner); + } + + Projectile.NewProjectile(null, Projectile.Center + Vector2.UnitY * 8, Vector2.Zero, ModContent.ProjectileType(), 0, 0); + } + } + + internal class FrostFlailShard : ModProjectile + { + public override string Texture => AssetDirectory.SnowItem + Name; + + public override void SetDefaults() + { + Projectile.width = 18; + Projectile.height = 18; + Projectile.tileCollide = true; + Projectile.timeLeft = 120; + Projectile.friendly = true; + Projectile.aiStyle = -1; + Projectile.penetrate = 3; + } + + public override bool OnTileCollide(Vector2 oldVelocity) + { + Projectile.penetrate -= 1; + + if (Projectile.penetrate <= 0) + return true; + + Projectile.velocity += oldVelocity * -0.8f; + + return false; + } + + public override void OnHitNPC(NPC target, NPC.HitInfo hit, int damageDone) + { + target.AddBuff(BuffID.Frostburn, 60); + } + } +} diff --git a/Localization/en-US_Mods.StarlightRiver.hjson b/Localization/en-US_Mods.StarlightRiver.hjson index e69de29bb..7e3f0a64e 100644 --- a/Localization/en-US_Mods.StarlightRiver.hjson +++ b/Localization/en-US_Mods.StarlightRiver.hjson @@ -0,0 +1,3981 @@ +Keybinds: { + Starsight.DisplayName: Starsight + "Forbidden Winds.DisplayName": Forbidden Winds + Faeflame.DisplayName: Faeflame +} + +Items: { + GatheringWindsItem: { + DisplayName: Gathering Winds + Tooltip: + ''' + Forbidden Winds Infusion + Hold the dash key to hover and charge up a dash + Charged dashes shatter enemy defense on contact + Drain 2 starlight/s while charging + Must spend atleast 1 starlight to activate + ''' + } + + StellarRushItem: { + DisplayName: Stellar Rush + Tooltip: + ''' + Forbidden Winds Infusion + Dash farther and carry more speed + Increases starlight cost to 1.5 + ''' + } + + WellspringItem: { + DisplayName: Wellspring + Tooltip: + ''' + Starsight Infusion + Creates a restorative wellspring when using starsight on the air + Spend 2 starlight to do this + ''' + } + + BasicInfusion: { + DisplayName: Blank Slate + Tooltip: Used to create infusions + } + + CauldronItem.Tooltip: Places an Alchemic Cauldron + MixingStick.Tooltip: + ''' + Mixing Stick + Use this to finalize alchemy recipes to craft them. + ''' + + ArtilleryLicense: { + DisplayName: Artillery License + Tooltip: + ''' + Increases your max number of sentries by 1 + `Totally not forged` + ''' + } + + DefenseSystem: { + DisplayName: Arms Dealer's Defense System + Tooltip: + ''' + Summons a gun-toting turret + Right click to cycle between different guns + [i/s1:95] Modest damage with good range + [i/s1:964] Great damage with short range + [i/s1:98] Light damage with great fire rate + + ''' + } + + MoonstoneBarrierDye: { + DisplayName: Moonstone Tincture + Tooltip: + ''' + Causes {{barrier}} to reflect the light of the moon + Equipable + Vanity Item + ''' + } + + VitricBossBarrierDye: { + DisplayName: Sentinel's Tincture + Tooltip: + ''' + Causes {{barrier}} to mimic the shield of the Shattered Sentinel + Equipable + Vanity Item + ''' + } + + ExoticTimepiece: { + DisplayName: Exotic Timepiece + Tooltip: + ''' + Your sentries fire faster and shock nearby enemies when placed + Your minions and sentries occasionally critically strike + 200% increased sentry placement speed + 'So complicated that you're not even sure how you built it' + ''' + } + + SaltCogs: { + DisplayName: Salt Cogs + Tooltip: + ''' + Your sentries fire twice as fast for two seconds after being placed + 100% increased sentry placement speed + 'Not edible. Probably.' + ''' + } + + SeaglassLens: { + DisplayName: Seaglass Lens + Tooltip: Your minions and sentries occasionally critically strike + } + + SeaglassRing: { + DisplayName: Seaglass Ring + Tooltip: + ''' + +30 {{barrier}} + {{Barrier}} recharge starts slightly faster + 'The battering waves have not diminished its shine' + ''' + } + + BreachCannon: { + DisplayName: Breach Cannon + Tooltip: + ''' + Summons a sentry that shoots a laser towards the cursor + Colliding lasers from multiple cannons can combine + ''' + } + + BreacherChest: { + DisplayName: Breacher Chestplate + Tooltip: 10% increased ranged damage + } + + BreacherHead: { + DisplayName: Breacher Visor + Tooltip: 15% increased ranged critical strike damage + } + + BreacherLegs: { + DisplayName: Breacher Leggings + Tooltip: up to 20% ranged critical strike damage based on speed + } + + FlareBreacher: { + DisplayName: Flare Breacher + Tooltip: Fires explosive flares that embed in enemies, blasting shrapnel through and behind them + } + + ReactivePlating: { + DisplayName: Reactive Plating + Tooltip: + ''' + Gain brief damage resistance after taking several hits + 'The shielding activates, but only after... repeated triggers.' + ''' + } + + ScrappodItem: { + DisplayName: Scrap Pod + Tooltip: Shatters into scrapnel after reaching your cursor + } + + Scrapshot: { + DisplayName: Scrapshot + Tooltip: + ''' + to hook your enemies and pull closer + Fire while hooked to reduce spread and go flying + ''' + } + + SupplyBeacon: { + DisplayName: Supply Beacon + Tooltip: + ''' + Taking over 50 damage summons a supply drop + Stand near the supply drop to buff either damage, regeneration, or defense + 10 second cooldown + ''' + } + + PotionForest: { + DisplayName: Forest Tonic + Tooltip: Provides regeneration and immunity to poison + } + + ArchaeologistsWhip: { + DisplayName: Archaeologist's Whip + Tooltip: + ''' + Strike enemies to make them drop treasure + Collect treasure to empower your minions + ''' + } + + AWhip_BlueGem: { + DisplayName: Treasure + Tooltip: You shouldn't see this + } + + AWhip_Cloud: { + DisplayName: Treasure + Tooltip: You shouldn't see this + } + + AWhip_Coin: { + DisplayName: Treasure + Tooltip: You shouldn't see this + } + + AWhip_GreenGem: { + DisplayName: Treasure + Tooltip: You shouldn't see this + } + + AWhip_Necklace: { + DisplayName: Treasure + Tooltip: You shouldn't see this + } + + AWhip_RedGem: { + DisplayName: Treasure + Tooltip: You shouldn't see this + } + + AztecDeathSaxophone: { + DisplayName: Death Saxophone + Tooltip: + ''' + Take damage and kill foes with other weapons to charge the saxophone + Once charged, use it to unleash a high-damage death roar + ''' + } + + DesertArtifact1Item: { + DisplayName: Ancient Fossil + Tooltip: Would fetch a nice price! + } + + DesertArtifact2Item: { + DisplayName: Ancient Fossil + Tooltip: Would fetch a nice price! + } + + DesertArtifact3Item: { + DisplayName: Ancient Fossil + Tooltip: Would fetch a nice price! + } + + DesertArtifact4Item: { + DisplayName: Ancient Fossil + Tooltip: Would fetch a nice price! + } + + DesertArtifact5Item: { + DisplayName: Ancient Fossil + Tooltip: Would fetch a nice price! + } + + DesertArtifact6Item: { + DisplayName: Ancient Fossil + Tooltip: Would fetch a nice price! + } + + DesertArtifact7Item: { + DisplayName: Ancient Fossil + Tooltip: Would fetch a nice price! + } + + ExoticGeodeArtifactItem: { + DisplayName: Exotic Geode + Tooltip: + ''' + 'Incredibly shiny' + An Extractinator might be able to break it apart... + ''' + } + + PerfectlyGenericArtifactItem: { + DisplayName: Perfectly Generic Object + Tooltip: Alchemizes a Perfectly Generic Pet + } + + PirateChestArtifactItem: { + DisplayName: Pirate Chest + Tooltip: + ''' + to open + 'Sought after for centuries' + ''' + } + + RainTotemArtifactItem: { + DisplayName: Rain Totem + Tooltip: Summons or banishes a great storm + } + + WarriorKingsCrown: { + DisplayName: Warrior King's Crown + Tooltip: + ''' + Cursed : All summon slots convert to +2% summoning critical strike chance per slot + All sentry slots convert to +30% summoning damage per slot + Summoning damage increased by 40% + Combat mount cooldowns reduced by 30% + ''' + } + + WindTotemArtifactItem: { + DisplayName: Wind Totem + Tooltip: Summons or banishes a great wind + } + + DebugModerEnabler: { + DisplayName: Debug Mode + Tooltip: Enables {{Debug}} mode + } + + DebugStick: { + DisplayName: Debug Stick + Tooltip: Has whatever effects are needed + } + + DefiledAnkh.Tooltip: + ''' + Cursed : Your {{Barrier}} protects against 25% less damage + +100% {{Inoculation}} and immunity to most debuffs while {{Barrier}} is active + +40 max {{Barrier}} + ''' + + Sandscript: { + DisplayName: Sandscript + Tooltip: + ''' + Manifests a blade of sand + `The actual words are lost to time...` + ''' + } + + AquaSapphire: { + DisplayName: Aqua Sapphire + Tooltip: + ''' + {{Barrier}} negates 15% more damage + +20 {{Barrier}} + 'Its depths shimmer like waves' + ''' + } + + Cloudstrike: { + DisplayName: Cloudstrike + Tooltip: + ''' + Accumulate electrical charge while not firing + Damage and range of your next shot increases with charge + 'Meet this storm of sound and fury, till thunder-clashes fade to silence' + ''' + } + + InertStaff: { + DisplayName: Inert Crescent Staff + Tooltip: "'Still holds some latent lightning...'" + } + + SkullBuster: { + DisplayName: Skullbuster + Tooltip: + ''' + to throw 4 skullbombs + Release to shoot them all in quick succession + ''' + } + + StarlightPendant: { + DisplayName: Starlight Pendant + Tooltip: + ''' + Boosts mana regen based on your current {{barrier}} + Consuming mana boosts {{barrier}} regen + -10 {{barrier}} + ''' + } + + StoneOfTheDrowned: { + DisplayName: Stone of the Drowned + Tooltip: + ''' + +30 {{barrier}} + Increases your max minions by 2 when you have no {{barrier}} + Re-summons two slots worth of minions when you reach 0 {{barrier}} + ''' + } + + ThousandthDegree.Tooltip: + ''' + Melts through enemies to build up heat + Releasing launches the blazing wheel + 'Rip and tear' + ''' + + TwistSword: { + DisplayName: Twisted Greatsword + Tooltip: + ''' + Hold to unleash a whirling slash + Hold jump while slashing to accelerate upward + ''' + } + + WardedMail: { + DisplayName: Warded Mail + Tooltip: + ''' + {{Barrier}} damage is applied to attackers as thorns + +{{Barrier}} negates 10% more damage + +40 {{barrier}} + ''' + } + + ReplicantCells: { + DisplayName: Replicant Cells + Tooltip: + ''' + +15% {{Inoculation}} + Health regeneration starts slightly faster + ''' + } + + BlackPepper.Tooltip: "\n\n" + BrusselSprouts.Tooltip: "\n\n" + Butter.Tooltip: "\n\n" + Cabbage.Tooltip: "\n\n" + Carrot.Tooltip: "\n\n" + Cashews.Tooltip: "\n\n" + Cherry.Tooltip: "\n\n" + ChocolateGlaze.Tooltip: "\n\n" + CoffeeBeans.Tooltip: "\n\n" + CrimsonSteak.Tooltip: "\n\n" + DicedMushrooms.Tooltip: "\n\n" + Dough.Tooltip: "\n\n" + Dressing.Tooltip: "\n\n" + EaterSteak.Tooltip: "\n\n" + Entrails.Tooltip: "\n\n" + Eye.Tooltip: "\n\n" + FaceSteak.Tooltip: "\n\n" + Flour.Tooltip: "\n\n" + Gelatine.Tooltip: "\n\n" + GelBerry.Tooltip: "\n\n" + GiantMushroom.Tooltip: "\n\n" + HealthExtract.Tooltip: "\n\n" + HoneySyrup.Tooltip: "\n\n" + IvySalad.Tooltip: "\n\n" + JumboShrimp.Tooltip: "\n\n" + Lettuce.Tooltip: "\n\n" + MahoganyRoot.Tooltip: "\n\n" + ManaExtract.Tooltip: "\n\n" + + Meal: { + DisplayName: Meal + Tooltip: Rich food that provides these buffs: + } + + Milk.Tooltip: "\n\n" + Rabbit.Tooltip: "\n\n" + RocketFuel.Tooltip: "\n\n" + SeaSalt.Tooltip: "\n\n" + SkySprinkles.Tooltip: "\n\n" + BlastoffShake.Tooltip: "\n\n" + BrandedCoffee.Tooltip: "\n\n" + ButterPancakes.Tooltip: "\n\n" + CherryBrownie.Tooltip: "\n\n" + CreamySoup.Tooltip: "\n\n" + CrimsonKebab.Tooltip: "\n\n" + JungleSalad.Tooltip: "\n\n" + MushroomSteak.Tooltip: "\n\n" + Salad.Tooltip: "\n\n" + ShrimpSandwich.Tooltip: "\n\n" + Slimejelly.Tooltip: "\n\n" + SupportCookies.Tooltip: "\n\n" + StarlightWater.Tooltip: "\n\n" + Sugar.Tooltip: "\n\n" + TableSalt.Tooltip: "\n\n" + Toast.Tooltip: "\n\n" + VertebrateNuggets.Tooltip: "\n\n" + Vinegar.Tooltip: "\n\n" + WhippedCream.Tooltip: "\n\n" + + AcornSprout: { + DisplayName: Acorn Sprout + Tooltip: Killing summon tagged enemies creates acorns to fall on nearby enemies + } + + BricklayersMallet: { + DisplayName: Bricklayer's Mallet + Tooltip: + ''' + Doubles block placement and tool range + Decreases mining speed by 33% for blocks outside your original range + ''' + } + + DustyAmulet: { + DisplayName: Dusty Amulet + Tooltip: + ''' + +20 maximum life + +20 maximum mana + 0.8x critical strike chance + 'An old heirloom with an inscription lost to time' + ''' + } + + FeralWolfMountItem: { + DisplayName: Juicy Steak + Tooltip: + ''' + Combat Mount: Summons a Feral Wolf + Inflicts bleeding with powerful bites + to howl and boost the speed of minions + ''' + } + + HeavyFlail: { + DisplayName: Heavy Flail + Tooltip: + ''' + Hold to swing a monstrous ball of metal + `We've got the biggest balls of them all!` + ''' + } + + OldWhetstone: { + DisplayName: Old Whetstone + Tooltip: + ''' + +1 to all damage + 'Why in tarnation are you sharpening your wand?!' + ''' + } + + SlimePrinceChest: { + DisplayName: Slime Prince's Curiass + Tooltip: + ''' + 5% increased summoning damage + You can summon an additional minion + ''' + } + + SlimePrinceHead: { + DisplayName: Slime Prince's Crown + Tooltip: 10% increased summoning damage + } + + SlimePrinceLegs: { + DisplayName: Slime Prince's Tassets + Tooltip: Minions inflict 5% {{exposure}} + } + + Trowel: { + DisplayName: Bricklayer's Trowel + Tooltip: + ''' + Extends blocks in a straight line + Direction is based on your position + for reverse direction + 30 block range + ''' + } + + Trowel2: { + DisplayName: Autotrowel 9000 + Tooltip: + ''' + Extends blocks in a straight line extremely quickly + Direction is based on your position + for reverse direction + 40 block range + 'The perfect tool for every esteemed bridgebuilder!' + ''' + } + + EmeraldHeart: { + DisplayName: Emerald Heart + Tooltip: You shouldn't see this + } + + GeoAmethyst: { + DisplayName: Amethyst + Tooltip: You shouldn't see this + } + + GeoDiamond: { + DisplayName: Diamond + Tooltip: You shouldn't see this + } + + GeoEmerald: { + DisplayName: Emerald + Tooltip: You shouldn't see this + } + + GeomancerHood.DisplayName: Geomancer's Hood + + GeomancerItemDummy: { + DisplayName: Effects of different gems: + Tooltip: + ''' + [i/s1:5684]: Critical strikes partially ignore armor, with increased chance for missing enemy HP + [i/s1:5692]: +100 barrier. Gain a shield that points to your cursor and blocks attacks, consuming {{barrier}} + [i/s1:5685]: Immediately heal 20 hp. Hits have a chance to create a 5 HP life heart + [i/s1:5691]: Immediately refill mana. Hits have a chance to create 1 to 3 mana stars + [i/s1:5683]: All strikes inflict Toxic Amethyst, a stacking poison debuff + [i/s1:5690]: Hits have a chance to summon a Ruby Dagger to seek the struck enemy for 20% of the hit's damage + ''' + } + + GeomancerPants.DisplayName: Geomancer's Greaves + GeomancerRobe.DisplayName: Geomancer's Cowl + + GeoRuby: { + DisplayName: Ruby + Tooltip: You shouldn't see this + } + + GeoSapphire: { + DisplayName: Sapphire + Tooltip: You shouldn't see this + } + + GeoTopaz: { + DisplayName: Topaz + Tooltip: You shouldn't see this + } + + SapphireStar: { + DisplayName: Sapphire Star + Tooltip: You shouldn't see this + } + + SparklingBullet: { + DisplayName: Sparkling Bullet + Tooltip: Restored on a successful hit + } + + BloodAmulet: { + DisplayName: Blood Amulet + Tooltip: + ''' + Every 25 damage taken releases a homing bloodbolt + These bolts damage enemies and guarantee they drop life hearts on death + ''' + } + + BloodBolter: { + DisplayName: Bloodbolter + Tooltip: + ''' + Converts wooden arrows into bloodbolts + Bloodbolts impale dead fleshy enemies, exploding them on surfaces + ''' + } + + Gluttony: { + DisplayName: Gluttony + Tooltip: Sucks the souls out of your enemies, turning them against their former brethren + } + + GravediggerItem: { + DisplayName: Tombsmasher + Tooltip: + ''' + Strikes enemies up into the air when holding W and slams them down with S + Hit enemies in the air for more damage + ''' + } + + LivingBlood: { + DisplayName: Living Blood + Tooltip: "'Unnaturally pulses with the light of the Blood Moon'" + } + + RadculasRapier: { + DisplayName: Radcula's Rapier + Tooltip: + ''' + Rapidly stabs enemies, inflicting a stacking bleed + Press to teleport to the cursor, {{Reaping}} bleed stacks of enemies in the way for high damage and lifesteal + Striking multiple enemies with the teleport lowers its cooldown + ''' + } + + StaffOfSelfDisassembly: { + DisplayName: Staff of Self-Disassembly + Tooltip: + ''' + {{Reserve}} 40 life to summon a Flesh Horror + Horrors grant increased life regeneration + Life regeneration boost is increased when Horrors strike an enemy + ''' + } + + EchochainWhip: { + DisplayName: Echochain + Tooltip: + ''' + Chains enemies together, sharing summon damage between them + Hold and release to snare enemies near your mouse to the ground, chaining all effected enemies + ''' + } + + HauntedAmethyst: { + DisplayName: Haunted Amethyst + Tooltip: + ''' + Increases your number of max minions by 1 when below 50% life + Automatically summons a minion if there is a valid weapon in your inventory + ''' + } + + HauntedDaggerStaff: { + DisplayName: Haunted Dagger Staff + Tooltip: + ''' + Summons haunted daggers, embedding themselves in your foes + Change summon targets or whip them to violently tear the daggers from their flesh + 'These aren't enchanted... they're haunted!' + 'It's different?' + 'It's different.' + ''' + } + + PoltergeistChest: { + DisplayName: Haunting Breastplate + Tooltip: + ''' + 5% increased magic damage + +15% {{Inoculation}} + ''' + } + + PoltergeistHead: { + DisplayName: Haunting Hood + Tooltip: 15% increased magic critical strike damage + } + + PoltergeistLegs: { + DisplayName: Haunting Robes + Tooltip: +40 maximum mana + } + + TaintedGreataxe.Tooltip: + ''' + Cursed : Landing a Critical Strike will inflict {{Focused}} on a new, different enemy + on the Greataxe whilst it is Embedded to release it + ''' + + VengefulSpirit: { + DisplayName: Vengeful Spirit + Tooltip: "'I don't think it likes you'" + "Drop Rule": Dropped after beating either King Slime, Eye of Cthulhu, or Auroracle + } + + CharonsObol: { + DisplayName: Charon's Obol + Tooltip: + ''' + Converts all dropped money to ancient coins, which ricochet projectiles off themselves + Coins lose their power when they contact any surface + 'Soon, may the Ferryman come...' + ''' + } + + FuryInABottle: { + DisplayName: Fury in a Bottle + Tooltip: + ''' + Allows a short double jump + Recharges for every 100 damage dealt + ''' + } + + GlowingObsidian: { + DisplayName: Glowing Obsidian + Tooltip: + ''' + Inflicts stacking burning + [RIGHT] to skewer nearby enemies, increasing burning damage taken + ''' + } + + InfernalCatalyst: { + DisplayName: Infernal Catalyst + Tooltip: + ''' + Primes the lavas of hell for transmutation + Requires a large body of lava + Items that can be transmuted will glow in your inventory + ''' + } + + InfernalHarvest: { + DisplayName: Infernal Harvest + Tooltip: + ''' + Swing a huge harvesting scythe to gather mana from enemies + to spend 90 mana to throw the scythe, leaving a burning trail + ''' + } + + Corpseflower.Tooltip: + ''' + All damage dealt is converted into damage over time + Damage is initially decreased, but can stack + You are unable to critically strike + ''' + + ManEaterPot: { + DisplayName: Man Eater Pot + Tooltip: + ''' + Causes Man Eaters to sprout from your head + These Man Eaters will consume heart pickups to empower themselves + Consumed heart pickups are delayed and heal you for less + ''' + } + + Slitherring: { + DisplayName: Slitherring + Tooltip: A small snake occasionally attacks with you when you use a whip + } + + ChargedMagnet: { + DisplayName: Charged Magnet + Tooltip: "'Pulsing with magnetic power'" + } + + GrayGoo: { + DisplayName: Gray Goo + Tooltip: + ''' + Summons a swarm of nanomachines to devour your enemies + 'Say the line, Armstrong!' + ''' + } + + ThunderBeads: { + DisplayName: Magnet Beads + Tooltip: + ''' + Whip enemies to stick the beads to them + Repeatedly click to shock affected enemies + ''' + } + + Thunderbuss: { + DisplayName: Thunderbuss + Tooltip: + ''' + Fires powerful lightning at enemies in a cone + to fire an explosive lightning orb, attracting and boosting your lightning + 'Crush the path of most resistance' + ''' + } + + UnchargedMagnet: { + DisplayName: Uncharged Magnet + Tooltip: + ''' + Charged enemies are attracted with this in your inventory + Charged enemies are stronger than normal, but charge this item on death + ''' + } + + WatchBattery: { + DisplayName: Watch Battery + Tooltip: Your sentries shock nearby enemies when placed + } + + AquaticManabond: { + DisplayName: Aquatic Manabond + Tooltip: + ''' + Your minions can store 40 mana + Your minions siphon 6 mana per second from you untill full + Your minions spend 8 mana to attack with a bouncing waterbolt occasionally + ''' + } + + BasicManabond: { + DisplayName: Manabond + Tooltip: + ''' + Your minions can store 40 mana + Your minions siphon 6 mana per second from you untill full + Your minions spend 6 mana to attack with a magic bolt occasionally + ''' + } + + DruidicManabond: { + DisplayName: Druidic Manabond + Tooltip: + ''' + Your minions can store 40 mana + Your minions siphon 6 mana per second from you untill full + Your minions spend 15 mana to attack with a burst of poison thorns + ''' + } + + InfernalManabond: { + DisplayName: Infernal Manabond + Tooltip: + ''' + Your minions can store 40 mana + Your minions siphon 6 mana per second from you untill full + Your minions spend 20 mana to attack with an exploding fireball occasionally + ''' + } + + ShockingManabond: { + DisplayName: Shocking Manabond + Tooltip: + ''' + Your minions can store 40 mana + Your minions siphon 6 mana per second from you untill full + Your minions spend 12 mana to attack with chain lightning occasionally + Chain lightning inflicts overcharged, decreasing defense + ''' + } + + AlchemistShackles: { + DisplayName: Alchemist's Shackles + Tooltip: + ''' + Resource potions are more effective when their respective resource is lower + Cursed : Potion sickness effects last 15 seconds longer + ''' + } + + ArchaeologistsMap: { + DisplayName: Archaeologist's Map + Tooltip: Reveals the location of a nearby Artifact + } + + AxeBook: { + DisplayName: Tiger Technique + Tooltip: + ''' + Teaches you the Art of Axes, granting all axe weapons a new combo attack + The final strike will {{rend}} enemies' armor + to throw your axe + ''' + } + + BalloonGun: { + DisplayName: Balloon Gun + Tooltip: Attach balloons to enemies to make them float away + } + + BalloonInABalloon: { + DisplayName: Balloon In A Balloon + Tooltip: + ''' + Increases jump height + Increases mid-air maneuverability + Hold UP to fall slower + ''' + } + + BarbedKnife: { + DisplayName: Barbed Knife + Tooltip: Critical strikes apply a bleeding debuff that stacks up to five times + } + + BizarrePotion: { + DisplayName: Bizarre Potion + Tooltip: Throws a random volatile potion with random - usually explosive - effects + } + + Bladesaw: { + DisplayName: Bladesaw + Tooltip: + ''' + Shreds through enemies + Repeated hits overheat the saw, increasing damage + to use as a tool + ''' + } + + BloodlessAmulet: { + DisplayName: Amulet of the Bloodless Warrior + Tooltip: + ''' + +100 {{Barrier}} + {{Barrier}} absorbs ALL damage, but recharges slower + You are unaffected by damage over time + You have 0 life. Healing grants a decaying damage boost instead of life + 'Leave your flesh behind, for your rage is all you need' + ''' + } + + BrokenGlasses: { + DisplayName: Broken Glasses + Tooltip: Damage over time effects are able to critically strike + } + + BuffChalice: { + DisplayName: Plexus Chalice + Tooltip: Inflicting debuffs temporarily increases your {{Inoculation}} + } + + CasualMirror: { + DisplayName: Causal Mirror + Tooltip: + ''' + Cursed : Your DoT and regeneration effects are inverted. + Regenerate life when you would take damage-over-time. + Take damage-over-time when you would regenerate life. + This includes natural regeneration! + ''' + } + + Cheapskates: { + DisplayName: Cheapskates + Tooltip: + ''' + Maximum movement speed is doubled + Take up to 25% more damage while moving over your previous max speed + Acceleration is reduced by 75% when over your previous max speed + ''' + } + + CoachGun: { + DisplayName: Coach Gun + Tooltip: + ''' + to throw out an exploding bundle of dynamite + Shoot it to detonate it early + 'My business, my rules' + ''' + } + + CopperCoil: { + DisplayName: Copper Coil + Tooltip: Strikes nearby enemies with static electricity + } + + CoughDrops: { + DisplayName: Cough Drops + Tooltip: When debuffs wear off, gain a temporary speed and damage boost + } + + DiceAmmo: { + DisplayName: Dice + Tooltip: Every shot has randomized stats + } + + DisinfectantKit: { + DisplayName: Disinfectant Kit + Tooltip: + ''' + Combined effects of the Disinfectant Wipes and Sanitizer Spray + 10% increased critical strike chance when a debuff is active + ''' + } + + DisinfectantWipes: { + DisplayName: Disinfectant Wipes + Tooltip: + ''' + Critical strikes have a 10% chance to reduce your debuff durations by 3 seconds + Does not affect Potion Sickness debuffs + ''' + } + + DualCross: { + DisplayName: Double Cross + Tooltip: Shoots arrows from your highest two ammo slots at once + } + + DullBlade: { + DisplayName: Dull Blade + Tooltip: Ancient and heavily worn, but still solid. You could forge this into something useful... + } + + Earthduster.Tooltip: + ''' + Hold to fire a rapid stream of earth + Can use many different blocks as ammo, each with unique effects + 33% chance to not consume ammo + ''' + + ElectroArrow: { + DisplayName: Electro Arrow + Tooltip: + ''' + Chains to nearby enemies + Inflicts Overcharged, greatly lowering enemy defense + ''' + } + + EnchantedWateringCan: { + DisplayName: Enchanted Watering Can + Tooltip: + ''' + Grows saplings into large saplings + Speeds up the growth of large saplings + ''' + } + + FiletGiblet1: { + DisplayName: Giblet + Tooltip: You shouldn't see this + } + + FiletGiblet2: { + DisplayName: Giblet + Tooltip: You shouldn't see this + } + + FiletGiblet3: { + DisplayName: Giblet + Tooltip: You shouldn't see this + } + + FiletKnife: { + DisplayName: Filet Knife + Tooltip: + ''' + Critical strikes carve chunks of flesh from enemies + Devour chunks to heal and gain Bloodfrenzy + ''' + } + + FryingPan: { + DisplayName: Frying Pan + Tooltip: + ''' + Attacks in close-range melee before being thrown to ring some chrome domes + 'Evil-looking runes are inscribed on the bottom' + ''' + } + + GeodeBow: { + DisplayName: Geode Bow + Tooltip: + ''' + Hit enemies to create crystal growths + Shoot these growths to deal massive damage + ''' + } + + GraveBuster: { + DisplayName: Gravebuster + Tooltip: + ''' + Destroys nearby graves + 'You like the taste of brains, we don't like zombies' + ''' + } + + Guillotine: { + DisplayName: Golden Guillotine + Tooltip: + ''' + Critical strikes gain power as your foes lose health + Executes normal enemies on low health + ''' + } + + Gunchucks.DisplayName: Gunchucks + + GunstrapBoots: { + DisplayName: Gunstrap Boots + Tooltip: + ''' + All double jumps now shoot out a shotgun blast of bullets below you + Using wings fires constant rounds of machine gun fire + 'Smells like steak and fries' + ''' + } + + HeartStatueSentryItem: { + DisplayName: Heart Statue? + Tooltip: Summons a heart statue powered by your enemie's souls + } + + HermesVow: { + DisplayName: Hermes' Vow + Tooltip: + ''' + Cursed + Massively increased acceleration and movement speed + Increased jump height and max movement speed + Works with boots + You are unable to use wings + ''' + } + + HolyAmulet: { + DisplayName: Holy Amulet + Tooltip: Releases bursts of homing holy energy for every 25 life you heal + } + + HungryStomach: { + Tooltip: + ''' + Restore {{Starlight}} by damaging foes + Melee weapons restore twice as much + Disables natural {{Starlight}} regeneration + ''' + DisplayName: Hungry Stomach + } + + ImpactSMG: { + DisplayName: Impact SMG + Tooltip: + ''' + Hold to rapidly fire high impact bullets, heating up over time + Release to boomerang the gun + Boomeranging while not overheated grants a stacking buff to the Impact SMG's damage + Boomeranging while overheated will consume all stacks for a deadly explosion + ''' + } + + ImpulseThruster: { + DisplayName: Impulse Thruster + Tooltip: + ''' + Converts all wingtime into a burst of energy + 'At least 30 OSHA violations, in the palm of your hand' + ''' + } + + Ironheart: { + DisplayName: Ironheart + Tooltip: Melee damage generates decaying {{barrier}} and defense + } + + JadeStopwatch: { + DisplayName: Jade Stopwatch + Tooltip: + ''' + Time moves more quickly for you + Time briefly moves more slowly for you after being hit + Reduces your damage + ''' + } + + LostCollar: { + DisplayName: Lost Collar + Tooltip: + ''' + +40% {{Inoculation}} + Debuffs you inflict are inflicted on yourself + +5% movement and attack speed per debuff affecting you + Cursed : Lose all debuff immunities + ''' + } + + Magebane.Tooltip: + ''' + Cursed : You can not drink mana potions or other mana-replenishing items + Magic attacks have a 25% chance to leech a large portion of their damage as mana + ''' + + MagmaGun: { + DisplayName: Pyroclastic Flow + Tooltip: Blasts a torrential stream of magma that sticks to tiles and enemies + } + + MartialBook: { + DisplayName: Martial Encyclopedia + Tooltip: + ''' + Combined effects of Tiger, Snake, and Mantis Techniques + +10% melee critical strike damage + 'Quit, don't quit... Noodles, don't noodles.' + ''' + } + + PandorasDagger: { + DisplayName: Pandora's Dagger + Tooltip: Grazes release Discordant Bolts, inflicting stacks of Volatile + } + + PandorasShield: { + DisplayName: Pandora's Shield + Tooltip: "{{Grazes}} grant a portion of the projectiles' damage as {{barrier}}" + } + + PhilosophersMortar: { + DisplayName: Philosopher's Mortar + Tooltip: Life hearts decrease duration of Potion Sickness by 10 seconds, but heal half as much + } + + PowerCell: { + DisplayName: Power Cell + Tooltip: NaN + } + + PulseBoots: { + DisplayName: Pulse Boots + Tooltip: Grants a directionally boosted double jump + } + + RhythmicResonator: { + DisplayName: Rhythmic Resonator + Tooltip: + ''' + Attack in rhythm with your weapon to gradually increase damage and knockback + Disables autoswing + ''' + } + + SanitizerSpray: { + DisplayName: Sanitizer Spray + Tooltip: Critical strikes have a 25% chance to transfer parts of your debuffs to nearby enemies + } + + ShockAbsorber: { + DisplayName: Shock Absorber + Tooltip: + ''' + Dropping from great heights creates a shockwave + Nullifies fall damage + ''' + } + + Sling.Tooltip: + ''' + Sling seeds, stones, and mushrooms at your enemies + Seeds have increased velocity + Stones have less velocity but deal more damage and knockback + Mushrooms deal less damage but inflict Poisoned + 75% chance to not consume ammo + ''' + + Soilgun: { + DisplayName: Soilgun + Tooltip: + ''' + Hold to charge up a volley of soil + Release to fire the soil at high velocities + Can use many different types of soils + 'Soiled it! SOILED IT!' + ''' + } + + SojournersScarf: { + DisplayName: Sojourner's Scarf + Tooltip: + ''' + 20% increased movement speed + 50% decreased life regeneration while stationary + ''' + } + + Sorcerwrench: { + DisplayName: Sorcerwrench + Tooltip: + ''' + Select an area of blocks to be broken + Consumes 2 mana per block broken + ''' + } + + SoulOfFrog: { + DisplayName: Soul Of Frog + Tooltip: + ''' + Frogs are resurrected on death, growing stronger with each return from the brink. + Killing other critters has a chance to reveal them as actually being a frog the whole time + They will then be resurrected as if they were a frog the whole time, because they were + I'm telling you, don't fuck with the frogs, please, they are stronger than you know + ''' + } + + SpearBook: { + DisplayName: Snake Technique + Tooltip: + ''' + Teaches you the Art of the Spear, granting all normal spear weapons a new combo attack + The last strike in the combo deals increased damage and knockback + to deter enemies with a flurry of stabs + ''' + } + + SpikedMail: { + DisplayName: Spiked Mail + Tooltip: + ''' + {{Barrier}} damage is applied to attackers as thorns + +20 {{barrier}} + ''' + } + + StaminaGel: { + DisplayName: Starlight Gel + Tooltip: "" + } + + StaminaRing: { + DisplayName: Band of Starlight + Tooltip: +2 {{Starlight}} regeneration + } + + SwordBook: { + DisplayName: Mantis Technique + Tooltip: + ''' + Teaches you the Art of the Sword, granting all sword weapons a new combo attack + to parry, reflecting projectiles + ''' + } + + TarnishedRing: { + DisplayName: Tarnished Ring + Tooltip: "'Ancient and heavily tarnished, but still solid. You could sculpt this into something useful..." + } + + TinCoil: { + DisplayName: Tin Coil + Tooltip: Strikes nearby enemies with static electricity + } + + Ultrapills: { + DisplayName: ULTRAPILLS + Tooltip: + ''' + Cursed: You cannot restore health by normal means + Striking enemies occasionally leeches life + Killing enemies causes them to explode into healing blood + ''' + } + + CrescentQuarterstaff: { + DisplayName: Crescent Quarterstaff + Tooltip: + ''' + Striking enemies charges the staff with lunar energy + Condenses collected energy into a lunar orb when the final slam hits the ground + ''' + } + + Datsuzei: { + DisplayName: Datsuzei + Tooltip: Unleash the moon + } + + DianesPendant: { + DisplayName: Diane's Pendant + Tooltip: + ''' + Consuming mana charges a Crescent Guardian, blitzing nearby enemies when fully charged + +20 {{barrier}} + ''' + } + + Moonfury: { + DisplayName: Moonfury + Tooltip: Call down a shard of moonstone, inflicting {{Dreamfire}} on struck enemies + } + + MoonstoneArrow: { + DisplayName: Moonlit Arrow + Tooltip: Gains speed and power as it travels + } + + MoonstoneBarItem: { + DisplayName: Moonstone Bar + Tooltip: "'Shimmering with twisted starlight'" + } + + MoonstoneChest: { + DisplayName: Moonstone Chestpiece + Tooltip: +35 {{Barrier}} + } + + MoonstoneHamaxe.Tooltip: Press to charge up a slam that destroys a large area of walls + + MoonstoneHead: { + DisplayName: Moonstone Helmet + Tooltip: + ''' + 2% increased melee critical strike chance + +20 {{Barrier}} + ''' + } + + MoonstoneLegs: { + DisplayName: Moonstone Greaves + Tooltip: + ''' + Improved acceleration + +25 {{Barrier}} + ''' + } + + MoonstoneOreItem: { + DisplayName: Moonstone + Tooltip: "" + } + + StarlightShuriken: { + DisplayName: Starlight Shuriken + Tooltip: + ''' + Toss a volley of magical shurikens + Landing every shuriken decreases the amount thrown by 1 + Throw a powerful glaive when you would throw only 1 shuriken + ''' + } + + Shaker.DisplayName: The Shaker + + PalestoneNail: { + DisplayName: Palenail + Tooltip: Summons the Pale Knight + } + + AuroraBell: { + DisplayName: Aurora Bell + Tooltip: + ''' + Summons a bell sentry + Hit the bell with a whip to ring it + ''' + } + + AuroraIceBar: { + DisplayName: Frozen Aurora Bar + Tooltip: A preserved selection of the night sky + } + + AuroraIceItem: { + DisplayName: Frozen Aurora Chunk + Tooltip: A preserved piece of the night sky + } + + AuroraThroneMountItem: { + DisplayName: Aurora Crown + Tooltip: + ''' + Combat Mount: Summons an Aurora Throne + Lashes out with whip-like appendages + to summon explosive Auroralings + ''' + } + + BookOfFrost: { + DisplayName: Book Of Frost + Tooltip: Melee critical strikes cause an icy explosion + } + + Frostball: { + DisplayName: Frostball + Tooltip: + ''' + Strike enemies to build aurora power + Heals players near the yoyo based on aurora power + Gives you regeneration when retrieved based on aurora power + ''' + } + + Octogun: { + DisplayName: Glocktopus + Tooltip: + ''' + Converts Musket Balls into Aurora Ink + Critical hits and kills cause Tentapistols to sprout from your back + ''' + } + + OverflowingUrn: { + DisplayName: Overflowing Urn + Tooltip: + ''' + Unleashes a torrent of chilling winds + Prolonged use will cause it to go out of control + ''' + } + + SquidBossBag.DisplayName: Treasure Bag (Auroracle) + + SquidBossSpawn: { + DisplayName: Suspicious Looking Offering + Tooltip: Drop in prismatic waters to summon the one the Squiddites worship + } + + SquidBossSpawnEndless: { + DisplayName: Gilded Suspicious Looking Offering + Tooltip: + ''' + Drop in prismatic waters to summon the one the Squiddites worship + Infinite uses + ''' + } + + SquidFins: { + DisplayName: Squid Fins + Tooltip: Allows you to swim like a jellysquid + } + + TentacleHook: { + DisplayName: Tentacle Hook + Tooltip: Move your mouse to hook around objects + } + + Tentalance.Tooltip: + ''' + Launches a shimmering tentacle lance + Charge to fire up to 4 more lances at once + ''' + + WaterStaff: { + DisplayName: Staff of the Waves + Tooltip: + ''' + Places and removes aurora water + to place + to remove + ''' + } + + GreaterBarrierPotion: { + DisplayName: Greater Barrier Potion + Tooltip: + ''' + Grants 120 {barrier} + Greatly reduces overcharge {barrier} loss for 5 seconds + ''' + } + + InoculationPotion: { + DisplayName: Inoculation Potion + Tooltip: +30% {{Inoculation}} + } + + LesserBarrierPotion: { + DisplayName: Lesser Barrier Potion + Tooltip: + ''' + Grants 40 {barrier} + Greatly reduces overcharge {barrier} loss for 3 seconds + ''' + } + + RegularBarrierPotion: { + DisplayName: " Barrier Potion" + Tooltip: + ''' + Grants 80 {barrier} + Greatly reduces overcharge {barrier} loss for 4 seconds + ''' + } + + BloodCrystal: { + DisplayName: Blood Crystal + Tooltip: + ''' + Cursed : Debuffs you inflict are also inflicted onto you + All debuffs you inflict stack and last longer + ''' + } + + AquamarinePendant: { + DisplayName: Aquamarine Pendant + Tooltip: + ''' + +15 {{Barrier}} + Losing all of your {{barrier}} releases ice shards + ''' + } + + FrostFlail: { + DisplayName: Heavy Flail + Tooltip: + ''' + Hold to swing a monstrous ball of ice + Creates icy shards on impact, inflicting frostburn + ''' + } + + MeadHorn: { + DisplayName: Mead Horn + Tooltip: Potions last 50% longer + } + + Astroscrap: { + DisplayName: Astroscrap + Tooltip: ‘Alloy salvaged from enigmatic wreckage’ + } + + DormantScepter: { + DisplayName: Dormant Scepter + Tooltip: The scepter lies dormant, waning for mystical energy + } + + StarwoodBoomerang: { + DisplayName: Starwood Boomerang + Tooltip: Hold to channel the boomerang, causing it to release an explosion + } + + StarwoodBoots: { + DisplayName: Starwood Leggings + Tooltip: 5% increased magic critial strike chance + } + + StarwoodCharm: { + DisplayName: Starwood Charm + Tooltip: + ''' + Critical strikes generate mana stars + -3% critical strike chance + +3% critical strike chance when empowered by Starwood Armor + ''' + } + + StarwoodChest: { + DisplayName: Starwood Robes + Tooltip: Increases max mana by 20 + } + + StarwoodHat: { + DisplayName: Starwood Hat + Tooltip: 5% increased magic damage + } + + StarwoodScepter: { + DisplayName: Starwood Scepter + Tooltip: + ''' + Summons two halves of a sentient star + The stars drop mana stars when hitting summon tagged enemies + ''' + } + + StarwoodSlingshot: { + DisplayName: Starwood Slingshot + Tooltip: + ''' + Weaves together fallen stars + Consumes ammo every 50 shots + ''' + } + + StarwoodStaff: { + DisplayName: Starwood Staff + Tooltip: + ''' + Creates a burst of small stars + Striking an enemy with every star causes a larger star to drop on them + ''' + } + + AncientGear: { + DisplayName: Ancient Gear + Tooltip: "" + } + + Buzzsaw: { + DisplayName: Steamsaw + Tooltip: + ''' + Strike enemies to build up pressure + Release to vent the pressure, launching the sawblade + 'The right tool for the wrong job' + ''' + } + + CogAmmoItem: { + DisplayName: Cogshot + Tooltip: + ''' + Bounces between enemies up to five times + Halves damage with each bounce + ''' + } + + Cogwheel: { + DisplayName: Cogwheel + Tooltip: Summons a ridable Cogwheel mount + } + + Jetwelder: { + DisplayName: Jetwelder + Tooltip: + ''' + Collect scrap from damaging enemies + to use the scrap in order to build robots + ''' + } + + JetwelderScrap1: { + DisplayName: Scrap + Tooltip: You shouldn't see this + } + + JetwelderScrap2: { + DisplayName: Scrap + Tooltip: You shouldn't see this + } + + JetwelderScrap3: { + DisplayName: Scrap + Tooltip: You shouldn't see this + } + + JetwelderScrap4: { + DisplayName: Scrap + Tooltip: You shouldn't see this + } + + RebarLauncher: { + DisplayName: Rebar Launcher + Tooltip: + ''' + Impales enemies + Shoot impaled rebar to drive it even deeper into enemies + ''' + } + + GloomGauntlet: { + DisplayName: Gloom Gauntlet + Tooltip: + ''' + Gain melee damage based on the speed of your held weapon + Slower weapons grant more damage + ''' + } + + GloomGel: { + DisplayName: Gloom Gel + Tooltip: "" + } + + RuneStaff: { + DisplayName: Shine Staff + Tooltip: + ''' + Hold to search for treasure + Release to fire stars toward the cursor + ''' + } + + TempleLens: { + DisplayName: Ancient Lens + Tooltip: + ''' + Critical strikes cause enemies around the struck enemy to glow, revealing other enemies + +2% critical strike chance + +15% critical strike damage + ''' + } + + TempleLensUpgrade: { + DisplayName: Truestrike Lens + Tooltip: + ''' + Critical strikes expose enemies near the struck enemy + Exposed enemies have 20% increased {{Exposure}} on first hit + +2% critical strike chance + +20% critical strike damage + ''' + } + + TemplePick: { + DisplayName: Whirlwind Pickaxe + Tooltip: Hold to charge up a spinning pickaxe dash, breaking anything in your way + } + + TempleRune: { + DisplayName: Rune of Warding + Tooltip: +50 {{barrier}} + } + + TempleSpear: { + DisplayName: Point of Light + Tooltip: + ''' + Hold to charge a powerful spear + Fires a laser when fully charged + ''' + } + + ArmorBag: { + DisplayName: Armor Bag + Tooltip: + ''' + Stores armor for quick use + Contains: + ''' + } + + ChefBag: { + DisplayName: Chef's Bag + Tooltip: Stores lots of every food ingredient + } + + CursedDrop: { + DisplayName: Drop of darkness + Tooltip: + ''' + Reforges an accessory with a cursed prefix + Right Click an accessory while holding this on your cursor to use + Reforge the item at the goblin tinkerer to remove it + ''' + } + + CurseRemover: { + DisplayName: Scroll of Undoing + Tooltip: + ''' + Place over an equipped Cursed item to destroy it + 'There's no turning back, most of the time' + ''' + } + + MeteorForcer: { + DisplayName: Prayer for Meteorite + Tooltip: Guarantees a meteorite will be the next celestial object to fall + } + + MoonstoneForcer: { + DisplayName: Prayer for Moonstone + Tooltip: Guarantees a moonstone will be the next celestial object to fall + } + + AncientStarwoodBoots.DisplayName: Ancient Starwood Leggings + AncientStarwoodChest.DisplayName: Ancient Starwood Robes + AncientStarwoodHat.DisplayName: Ancient Starwood Hat + MechaChest.DisplayName: Mecha Chest + MechaHead.DisplayName: Mecha Helmet + MechaLegs.DisplayName: Mecha Legs + + WardenHat: { + DisplayName: Warden Hat + Tooltip: "[c/198E12:???]" + } + + WardenRobe: { + DisplayName: Warden Robe + Tooltip: "[c/198E12:???]" + } + + CoachGunUpgrade: { + DisplayName: Magmatic Coach Gun + Tooltip: + ''' + Press to throw out crystal bombs, which explode in chain reactions + Firing at a bomb detonates it prematurely for more violent results + 'How does he manage to corenuke like that?' + ''' + } + + Coalescence: { + DisplayName: Coalescence + Tooltip: + ''' + Charge for a volley of brilliant magic + Fully charged shots leech mana where their arrows meet + ''' + } + + FacetAndLattice: { + DisplayName: Facet & Lattice + Tooltip: + ''' + to guard, blocking damage depending on timing + Attacks are empowered after a guard, also depending on your guard timing + ''' + } + + ForgeMap: { + DisplayName: Glassweaver's Map + Tooltip: + ''' + Quite a self-explanatory exquisite piece of art isn't it? + Right click on the item to view the map. + ''' + } + + GlassArrowhead: { + DisplayName: Glass Arrowhead + Tooltip: Critical strikes cause arrows to shatter into glass shards + } + + GlassIdol.Tooltip: Used to worship a powerful guardian. + + GlassIdolEndless: { + DisplayName: Gilded Glass Idol + Tooltip: + ''' + Used to worship a powerful guardian. + Infinite uses + ''' + } + + IgnitionGauntlets: { + DisplayName: Ignition Gauntlets + Tooltip: + ''' + Rapidly barrages enemies with your fists while building Ignition Charge + Hold to consume charge, propelling yourself forward at escape velocity + Attack while still flying to vent remaining charge in a large blast cone + 'Heroes always arrive from the skies' + ''' + } + + MagmaArrow: { + DisplayName: Magma Arrow + Tooltip: Cools down as it travels, applying less fire but dealing more damage and knockback + } + + MagmaCore: { + DisplayName: Magmatic Core + Tooltip: A sample of the hot stuff. + } + + MagmiteBomb: { + DisplayName: Magmite Bomb + Tooltip: + ''' + A ball of cuteness turned into an instrument of destruction + You monster... + ''' + } + + MagmiteBottle: { + DisplayName: Magmite in a Bottle + Tooltip: Why would you do this to him?! + } + + MagmiteVacpack.Tooltip: Blasts out Magmites that stick to enemies and increase summon tag damage + + Needler: { + DisplayName: Needler + Tooltip: + ''' + Stick spikes to enemies to build up heat + Overheated enemies explode, dealing massive damage + ''' + } + + PhoenixStorm: { + DisplayName: Phoenix Storm + Tooltip: Summons a storm of phoenixes that periodically swoop in on enemies + } + + RecursiveFocus.Tooltip: + ''' + Summons an infernal crystal + The infernal crystal locks onto enemies, ramping up damage over time + Press to cause the crystal to target multiple enemies, at the cost of causing all beams to not ramp up, dealing less damage + ''' + + RefractiveBlade: { + DisplayName: Refractive Blade + Tooltip: + ''' + Hold to charge a laser + Enemies struck by the laser have 25% increased melee {{Exposure}} + ''' + } + + SandstoneChunk: { + DisplayName: Ancient Ceramic + Tooltip: "" + } + + ShatteredAegis: { + DisplayName: Shattered Aegis + Tooltip: + ''' + Releases a burning ring when damaged + 'Meet your foes head-on, and give them a scorching embrace' + ''' + } + + StaminaUp: { + DisplayName: Glass Starlight Vessel + Tooltip: Increased maximum {{Starlight}} by 1 + } + + TempleEntranceKey: { + DisplayName: Forge Key + Tooltip: Opens a door to the Vitric Forge. + } + + TempleKey: { + DisplayName: Small Forge Key + Tooltip: Opens a door inside the Vitric Forge. + } + + VitricBossBag.DisplayName: Treasure Bag (Ceiros) + + VitricBow: { + DisplayName: Ancient Vitric Bow + Tooltip: Fires additional smaller arrows + } + + VitricBulletItem: { + DisplayName: Vitric Bullet + Tooltip: + ''' + Causes crystals to grow out of hit enemies + Strike crystals to shatter them, dealing damage + ''' + } + + VitricChest: { + DisplayName: Vitric Chestpiece + Tooltip: 5% increased ranged critical strike chance + } + + VitricHamaxe: { + DisplayName: Vitric Hamaxe + Tooltip: + ''' + to charge heat + Heat increases speed + Heat dissipates over time + ''' + } + + VitricHead: { + DisplayName: Vitric Headgear + Tooltip: 10% increased ranged damage + } + + VitricLegs: { + DisplayName: Vitric Greaves + Tooltip: + 2 Starlight regeneration + } + + VitricMagicBook: { + DisplayName: Vitric Book + Tooltip: Summons spikes to stab enemies above them + } + + VitricOre: { + DisplayName: Vitric Shard + Tooltip: "" + } + + VitricPick: { + DisplayName: Vitric Pickaxe + Tooltip: + ''' + Hellstone does not drop lava + Mining hellstone generates heat + Heat increases speed + ''' + } + + VitricSword: { + DisplayName: Ancient Vitric Blade + Tooltip: + ''' + Shatters into enchanted glass shards + Unable to be used while shattered + ''' + } + + CoolmiteLargeItem: { + DisplayName: Coolmismer + Tooltip: High intensity beauty! Avoid eye and skin exposure. + } + + CoolmitePassiveItem: { + DisplayName: Coolmite + Tooltip: Fragile! Please handle with care. + } + + CoolmiteSmolItem: { + DisplayName: Coolmini + Tooltip: Sharp edges! Watch your fingers. + } + + MagmiteLargeItem: { + DisplayName: Magmificent + Tooltip: Admire him! + } + + MagmitePassiveItem: { + DisplayName: Magmite + Tooltip: Release him! + } + + MagmiteSmolItem: { + DisplayName: Magmini + Tooltip: Nurture him! + } + + FaeflameTileItem: { + DisplayName: Faeflame + Tooltip: "{{Debug}} placer for ability pickup" + } + + StaminaShardTileItem: { + DisplayName: Starlight Shard + Tooltip: "{{Debug}} Item" + } + + WindsTileItem: { + DisplayName: Forbidden Winds + Tooltip: "{{Debug}} placer for ability pickup" + } + + CookStationItem: { + DisplayName: Prep Station + Tooltip: to prepare meals + } + + AnkhChestItem: { + DisplayName: Ankh Chest + Tooltip: "" + } + + DesertMonolithFlippedItem: { + DisplayName: Flipped Desert Monolith + Tooltip: + ''' + Places a section of flipped desert monolith + 'Even the text is flipped!' + ''' + } + + DesertMonolithItem: { + DisplayName: Desert Monolith + Tooltip: Places a section of desert monolith + } + + CommonVegetablesItem: { + DisplayName: Common Vegetable Seeds + Tooltip: Plant to grow your own veggies + } + + ForestBerryBushItem: { + DisplayName: Berry Bush + Tooltip: Plant to grow your own berries + } + + LeafWallItem: { + DisplayName: Flowing leaf wall + Tooltip: "" + } + + Slimeberry: { + DisplayName: Slimeberry + Tooltip: Ew. + } + + SlimeberryBushItem: { + DisplayName: Slimeberry Bush + Tooltip: Places a slimeberry bush + } + + ThickTreeAcorn: { + DisplayName: Large Acorn + Tooltip: "" + } + + AncientFruit: { + DisplayName: Ancient Fruit + Tooltip: " " + } + + GoldenRice: { + DisplayName: Golden Rice + Tooltip: " " + } + + Rice: { + DisplayName: Rice + Tooltip: " " + } + + GreenhouseGlassItem: { + DisplayName: Greenhouse Glass + Tooltip: + ''' + Speeds up the growth of any plant below it + Needs a 10 blocks of clear area or transparent blocks above it + ''' + } + + GreenhouseWallItem: { + DisplayName: Greenhouse Glass Wall + Tooltip: Fancy! + } + + BouncerItem: { + DisplayName: Vitric Bouncer + Tooltip: + ''' + Dash into this to go flying! + Resets jump accessories + ''' + } + + StaminaGemItem: { + DisplayName: Starlight Gem + Tooltip: Restores starlight when hit with an ability + } + + StaminaOrbItem: { + DisplayName: Starlight Orb + Tooltip: + ''' + Pass through this to gain starlight! + 5 second cooldown + ''' + } + + DisplayCaseFriendlyItem: { + DisplayName: Display Case + Tooltip: Can hold an Item for glamorous display + } + + RatTentItem: { + DisplayName: Strange Tent + Tooltip: Whats inside?... + } + + MoonstoneMonolithItem: { + DisplayName: Moonstone Monolith + Tooltip: "'Dreamifies the skies'" + } + + JellyShroomItem: { + DisplayName: Blue Jellyshroom + Tooltip: Boing! + } + + LumishroomItem: { + DisplayName: Lumishroom + Tooltip: Glowy... + } + + VibeshroomItem: { + DisplayName: Vibeshroom + Tooltip: Vibin' + } + + BlueTorchOvergrowItem: { + DisplayName: Blue Faerie Torch + Tooltip: Sparkly! and Blue! + } + + CrusherOvergrowItem: { + DisplayName: Crusher Trap + Tooltip: "" + } + + NoxiousNodeItem: { + DisplayName: Noxious Node + Tooltip: "{{Debug}} item" + } + + OvergrowthLivingWoodItem: { + DisplayName: Overgrown Living Wood + Tooltip: "[PH] make this a wand and stuffs" + } + + Rock2x2Item: { + DisplayName: 2x2 rock placer + Tooltip: It places... Rocks + } + + SkeletonBrickItem: { + DisplayName: Skeletal Brick + Tooltip: "" + } + + TorchOvergrowItem: { + DisplayName: Faerie Torch + Tooltip: Sparkly! + } + + WallOvergrowBrickItem: { + DisplayName: Runic Brick Wall + Tooltip: "" + } + + WallOvergrowGrassItem: { + DisplayName: Overgrowth Grass Wall + Tooltip: "" + } + + WindowSmallItem: { + DisplayName: Smol Window + Tooltip: "{{Debug}} Item" + } + + WispAltarLItem: { + DisplayName: Wisp Altar L Placer + Tooltip: "{{Debug}} Item" + } + + WispAltarRItem: { + DisplayName: Wisp Altar R Placer + Tooltip: "{{Debug}} Item" + } + + AuroraclePaintingItem: { + DisplayName: Prismatic Waters + Tooltip: "'K. Ra'" + } + + EggCodexPaintingItem: { + DisplayName: Codex Genesis + Tooltip: "'K. Ra'" + } + + EndOfTimePaintingItem: { + DisplayName: End of Time + Tooltip: "'K. Ra'" + } + + RatKingPaintingItem: { + DisplayName: Majestic Hoarder + Tooltip: "'K. Ra'" + } + + PalestoneItem: { + DisplayName: Palestone Block + Tooltip: "" + } + + AuroraBrickDoorItem: { + DisplayName: "{{Debug}} Brick Placer" + Tooltip: "" + } + + AuroraBrickItem: { + DisplayName: Aurora Brick + Tooltip: Oooh... Preeetttyyy + } + + AuroraBrickWallFriendlyItem: { + DisplayName: Aurora Brick Wall + Tooltip: Oooh... Preeetttyyy + } + + AuroraBrickWallItem: { + DisplayName: Aurora Brick Wall Dangerous + Tooltip: Oooh... Preeetttyyy + } + + DoorBombShooterItem: { + DisplayName: "{{Debug}} Shooter Placer" + Tooltip: "" + } + + PermafrostIceItem: { + DisplayName: Permafrost Ice + Tooltip: "" + } + + TouchstoneItem: { + DisplayName: Touchstone + Tooltip: A guiding light + } + + TouchstoneLootboxItem: { + DisplayName: Touchstone Chest Placer + Tooltip: "" + } + + AuroracleTrophyItem: { + DisplayName: Auroracle Trophy + Tooltip: "" + } + + CeirosTrophyItem: { + DisplayName: Ceiros Trophy + Tooltip: "" + } + + CombatShrineItem: { + DisplayName: Combat shrine placer + Tooltip: "{{Debug}} item" + } + + GlorchItem: { + DisplayName: Glorch + Tooltip: + ''' + Does a lamp give off light... or suck up the dark? + Reduces light nearby + ''' + } + + HotspringFountainItem: { + DisplayName: Hotspring Source + Tooltip: Transforms nearby water into a hotspring! + } + + MagmiteShrineItem: { + DisplayName: The Boi + Tooltip: It's him! + } + + DashBarrierItem: { + DisplayName: Dash Barrier + Tooltip: "{{Debug}} Item" + } + + JarTallItem: { + DisplayName: Stamina Jar Placer (Tall) + Tooltip: "{{Debug}} Item" + } + + TempleChestPlacer: { + DisplayName: Temple Chest Placer + Tooltip: "" + } + + TempleWallBigItem: { + DisplayName: Large Ancient Temple Brick Wall + Tooltip: "" + } + + TempleWallItem: { + DisplayName: Ancient Temple Brick Wall + Tooltip: "" + } + + TestBubble: { + DisplayName: Bubble + Tooltip: "{{Debug}} Item" + } + + VerletBannerItem: { + DisplayName: Verlet banner + Tooltip: "{{Debug}} Item" + } + + AncientSandstonePillarWallItem: { + DisplayName: Ancient Sandstone Wall + Tooltip: "" + } + + AncientSandstonePlatformItem: { + DisplayName: Ancient Sandstone Platform + Tooltip: "" + } + + AncientSandstoneTorchItem: { + DisplayName: Ancient Vitric Illuminator + Tooltip: It has an entrancing glow + } + + AncientSandstoneWallItem: { + DisplayName: Ancient Sandstone Wall + Tooltip: "" + } + + DestructableGlassItem: { + DisplayName: Breakable vitric crystal + Tooltip: A chunk of vitric crystal susceptible to the force of forbidden winds + } + + ForgeDoorItem: { + DisplayName: Forge Door + Tooltip: "{{Debug}} Item" + } + + ForgeInnerDoorItem: { + DisplayName: Forge Inner Door + Tooltip: "{{Debug}} Item" + } + + RedBannerShortItem: { + DisplayName: Short Flowing Banner + Tooltip: "{{Debug}} Item" + } + + CrystalSlimeSpawnerItem: { + DisplayName: NPC Spawner + Tooltip: "" + } + + DashableDoorItem: { + DisplayName: DashableDoor + Tooltip: "{{Debug}} Item" + } + + DoorGearsItem: { + DisplayName: Gear Puzzle Temple Door + Tooltip: Temple Door, Opens if gear puzzle is solved + } + + DoorLasersItem: { + DisplayName: Laser Puzzle Temple Door + Tooltip: Temple Door, Opens if laser puzzle is solved + } + + DoorVerticalItem: { + DisplayName: Vertical Temple Door + Tooltip: Temple Door, But what if it was vertical? + } + + EntranceDoorItem: { + DisplayName: EntranceDoor + Tooltip: "{{Debug}} Item" + } + + GearPuzzleOriginPlacer: { + DisplayName: Gear puzzle origin + Tooltip: "{{Debug}} Item" + } + + GearTilePlacer: { + DisplayName: Gear puzzle + Tooltip: "{{Debug}} Item" + } + + ObjectiveGearItem: { + DisplayName: Gear puzzle Point + Tooltip: "{{Debug}} Item" + } + + LightActorItem: { + DisplayName: Light actor placer + Tooltip: "{{Debug}} item" + } + + LensItem: { + DisplayName: Reflector Lens + Tooltip: "{{Debug}} Item" + } + + ReflectorItem: { + DisplayName: Reflector + Tooltip: "{{Debug}} Item" + } + + LowWindBannerItem: { + DisplayName: Rectangular Flowing Banner + Tooltip: "" + } + + MainForgeItem: { + DisplayName: Main forge + Tooltip: "{{Debug}} item" + } + + NPCSpawnerItem: { + DisplayName: NPC Spawner + Tooltip: "" + } + + OldCeirosShrineItem: { + DisplayName: Old Ceiros Shrine + Tooltip: "{{Debug}} Item" + } + + SoundPuzzleDoorItem: { + DisplayName: Sound Puzzle Temple Door + Tooltip: Temple Door, Opens if sound puzzle is solved + } + + TallWindowCrystalItem: { + DisplayName: Crystal Window Actor + Tooltip: "{{Debug}} Item" + } + + TallWindowItem: { + DisplayName: Window Actor + Tooltip: "{{Debug}} Item" + } + + TallWindowLavaItem: { + DisplayName: Lava Window Actor + Tooltip: "{{Debug}} Item" + } + + TempleCandleCrystalItem: { + DisplayName: Temple Crystal Candle + Tooltip: "" + } + + TempleCandleItem: { + DisplayName: Temple Candle + Tooltip: "" + } + + TempleCeirosFountainItem: { + DisplayName: Temple Sentinel Fountain + Tooltip: "" + } + + TempleWallCandleItem: { + DisplayName: Temple Wall Candle + Tooltip: "" + } + + TutorialDoor1Item: { + DisplayName: TutorialDoor1 + Tooltip: "{{Debug}} Item" + } + + TutorialDoor2Item: { + DisplayName: TutorialDoor2 + Tooltip: "{{Debug}} Item" + } + + VitricPillarWallCrystalItem: { + DisplayName: Crystal Vitric Forge Pillar + Tooltip: Sturdy + } + + VitricPillarWallItem: { + DisplayName: Vitric Forge Pillar + Tooltip: Sturdy + } + + VitricPillarWallLavaItem: { + DisplayName: Lava Vitric Forge Pillar + Tooltip: Sturdy + } + + VitricPillarWallShortItem: { + DisplayName: Short Vitric Forge Pillar + Tooltip: Sturdy + } + + VitricTempleWallItem: { + DisplayName: Vitric Forge Brick Wall (Danger) + Tooltip: "{{Debug}} item" + } + + VitricTempleWallSafeItem: { + DisplayName: Vitric Forge Brick Wall (Safe) + Tooltip: Sturdy + } + + WindsRoomActorItem: { + DisplayName: Winds Room Actor + Tooltip: "{{Debug}} Item" + } + + VitricBannerSmallItem: { + DisplayName: Short Flowing Banner + Tooltip: "" + } + + VitricBossAltarItem: { + DisplayName: Vitric Boss Altar Item + Tooltip: "{{{{Debug}}}} Item" + } + + VitricBreakableVaseItem: { + DisplayName: Vitric Vase Placer + Tooltip: "{{Debug}} Item" + } + + VitricFountainItem: { + DisplayName: Vitric Fountain + Tooltip: "{{Debug}} Item" + } + + VitricGiantCrystalItem: { + DisplayName: Vitric Giant crystal + Tooltip: The slot this Item is in changes the type placed + } + + VitricLargeCrystalItem: { + DisplayName: Large vitric crystal + Tooltip: The slot this Item is in changes the type placed + } + + VitricLargeFountainItem: { + DisplayName: Vitric Large Fountain + Tooltip: "{{Debug}} Item" + } + + VitricLootBoxItem: { + DisplayName: Vitric Loot Box Item + Tooltip: "" + } + + VitricMediumCrystalItem: { + DisplayName: Medium vitric crystal + Tooltip: The slot this Item is in changes the type placed + } + + VitricOreFloatItem: { + DisplayName: Floating Vitric Ore Crystal Item + Tooltip: "" + } + + VitricOreItem: { + DisplayName: Vitric Ore Crystal Item + Tooltip: "" + } + + VitricPylonItem: { + DisplayName: Vitric Pylon + Tooltip: You shouldn't have this! + } + + VitricRockItem: { + DisplayName: Vitric Rock + Tooltip: "" + } + + VitricSandWallItem: { + DisplayName: Vitric Sand Wall + Tooltip: "" + } + + VitricSmallCrystalItem: { + DisplayName: Small vitric crystal + Tooltip: The slot this Item is in changes the type placed + } + + VitricSpikeItem: { + DisplayName: Vitric Spikes + Tooltip: Ouch! + } + + VitricBannerItem: { + DisplayName: Long Flowing Banner + Tooltip: "" + } + + VitricBathtub: { + DisplayName: Vitric Bathtub + Tooltip: "" + } + + VitricBed: { + DisplayName: Vitric Bed + Tooltip: "" + } + + VitricBookcase: { + DisplayName: Vitric Bookcase + Tooltip: "" + } + + VitricCandelabra: { + DisplayName: Vitric Candelabra + Tooltip: "" + } + + VitricCandle: { + DisplayName: Vitric Candle + Tooltip: "" + } + + VitricChair: { + DisplayName: Vitric Chair + Tooltip: "" + } + + VitricChandelier: { + DisplayName: Vitric Chandelier + Tooltip: "" + } + + VitricClock: { + DisplayName: Vitric Clock + Tooltip: "" + } + + VitricDresser: { + DisplayName: Vitric Dresser + Tooltip: "" + } + + VitricLamp: { + DisplayName: Vitric Lamp + Tooltip: "" + } + + VitricLantern: { + DisplayName: Vitric Lantern + Tooltip: "" + } + + VitricPiano: { + DisplayName: Vitric Piano + Tooltip: "" + } + + VitricSink: { + DisplayName: Vitric Sink + Tooltip: "" + } + + VitricSofa: { + DisplayName: Vitric Sofa + Tooltip: "" + } + + VitricTable: { + DisplayName: Vitric Table + Tooltip: "" + } + + VitricWorkbench: { + DisplayName: Vitric Workbench + Tooltip: "" + } + + VitricDoorClosed: { + DisplayName: Vitric Door + Tooltip: "" + } + + CombatShrineBarrierItem: { + DisplayName: CombatShrineBarrierItem + Tooltip: "{{Debug}} item" + } + + EvasionShrineBarrierItem: { + DisplayName: EvasionShrineBarrierItem + Tooltip: "{{Debug}} item" + } + + VitricBossBarrierItem: { + DisplayName: VitricBossBarrierItem + Tooltip: "{{Debug}} item" + } + + GlassweaverBossBarrierItem: { + DisplayName: GlassweaverBossBarrierItem + Tooltip: "{{Debug}} item" + } + + AuroracleRelicItem: { + DisplayName: Auroracle Relic + Tooltip: "" + } + + CeirosRelicItem: { + DisplayName: Ceiros Relic + Tooltip: "" + } + + TempleChairItem: { + DisplayName: Temple Chair + Tooltip: "" + } + + TempleLargeVaseItem: { + DisplayName: Temple Large Vase + Tooltip: "" + } + + TempleLargeVaseCrystalItem: { + DisplayName: Temple Large Crystal Vase + Tooltip: "" + } + + TempleWorkbenchItem: { + DisplayName: Temple Workbench + Tooltip: "" + } + + TempleThroneItem: { + DisplayName: Temple Throne + Tooltip: "" + } + + TempleFloorWeaponRackItem: { + DisplayName: Temple Floor Weapon Rack + Tooltip: "" + } + + TempleTableItem: { + DisplayName: Temple Table + Tooltip: "" + } + + TempleTableCrystalItem: { + DisplayName: Temple Crystal Table + Tooltip: "" + } + + TempleWeaponRack0Item: { + DisplayName: Temple Weapon Rack A + Tooltip: "" + } + + TempleWeaponRack1Item: { + DisplayName: Temple Weapon Rack B + Tooltip: "" + } + + TempleWeaponRack2Item: { + DisplayName: Temple Weapon Rack C + Tooltip: "" + } + + TempleWeaponRack3Item: { + DisplayName: Temple Weapon Rack D + Tooltip: "" + } + + TempleThingamajigItem: { + DisplayName: Temple Large Weapon Rack + Tooltip: "" + } + + VitricBoss1Item: { + DisplayName: Music Box (Ceiros P1) + Tooltip: "" + } + + VitricBoss2Item: { + DisplayName: Music Box (Ceiros P2) + Tooltip: "" + } + + VitricPassiveItem: { + DisplayName: Music Box (Vitric Desert) + Tooltip: "" + } + + VitricTempleItem: { + DisplayName: Music Box (Vitric Temple) + Tooltip: "" + } + + MinibossItem: { + DisplayName: Music Box (GlassWeaver) + Tooltip: "" + } + + AuroracleItem: { + DisplayName: Music Box (Auroracle) + Tooltip: "" + } + + TempleBrickItem: { + DisplayName: Ancient Bricks + Tooltip: "" + } + + LeafOvergrowItem: { + DisplayName: Faerie Leaves + Tooltip: "" + } + + BrickOvergrowItem: { + DisplayName: Runic Bricks + Tooltip: "" + } + + StoneOvergrowItem: { + DisplayName: Runic Stone + Tooltip: "" + } + + SpringstoneItem: { + DisplayName: Springstone + Tooltip: "" + } + + ShrineBrazierItem: { + DisplayName: Mysterious Brazier + Tooltip: "" + } + + WitTileItem: { + DisplayName: Tile of Wit + Tooltip: "" + } + + AncientSandstoneItem: { + DisplayName: Ancient Sandstone + Tooltip: "" + } + + AncientSandstoneTileItem: { + DisplayName: Ancient Sandstone Tile + Tooltip: "" + } + + VitricBrickItem: { + DisplayName: Vitric Bricks + Tooltip: "" + } + + VitricCactusItem: { + DisplayName: Crystal Cactus + Tooltip: "" + } + + VitricGlassItem: { + DisplayName: Vitric Glass + Tooltip: "" + } + + VitricSandItem: { + DisplayName: Glassy Sand + Tooltip: "" + } + + VitricSoftSandItem: { + DisplayName: Soft Glassy Sand + Tooltip: "" + } + + VitricSandPlainItem: { + DisplayName: Soft Sand + Tooltip: "" + } +} + +Tiles: { + CauldronTile.MapEntry: Alchemic Cauldron + SeaglassRingTile.MapEntry: "" + CookStation.MapEntry: Cooking Station + CrashPod.MapEntry: Crashed Pod + AnkhChest.MapEntry: Ankh Chest + DesertMonolith.MapEntry: "" + DesertMonolithFlipped.MapEntry: "" + TwistSwordTile.MapEntry: Twisted Greatsword + PinkSeaSalt.MapEntry: "" + TableSalt.MapEntry: "" + CommonVegetables.MapEntry: "" + ForestBerryBush.MapEntry: "" + MonkSpear.MapEntry: Monk's Spade + SlimeberryBush.MapEntry: "" + ThickTree.MapEntry: Large Tree + ThickTreeBase.MapEntry: "" + ThickTreeSapling.MapEntry: Large sapling + TallAncientFruit.MapEntry: Ancient Fruit + TallGoldenRice.MapEntry: Golden Rice + TallRice.MapEntry: Rice + GreenhouseGlass.MapEntry: Greenhouse Glass + Bouncer.MapEntry: "" + StaminaGem.MapEntry: "" + DisplayCase.MapEntry: Relic Case + DisplayCaseFriendly.MapEntry: Relic Case + PatreonPlaque.MapEntry: "" + RatTent.MapEntry: Strange Tent + MoonstoneBar.MapEntry: Metal Bar + MoonstoneMonolith.MapEntry: Moonstone Monolith + MoonstoneOre.MapEntry: Moonstone Ore + JellyShroom.MapEntry: Jelly Shroom + Lumishroom.MapEntry: "" + Vibeshroom.MapEntry: "" + BlueTorchOvergrow.MapEntry: "" + OvergrowthLivingWoodTile.MapEntry: Overgrown Living Wood + Rock2x2.MapEntry: "" + SetpieceAltar.MapEntry: "" + SkeletonBrickTile.MapEntry: Skeleton Brick + TorchOvergrow.MapEntry: "" + WindowSmall.MapEntry: "" + WispAltarL.MapEntry: "" + WispAltarR.MapEntry: "" + AuroraclePainting.MapEntry: Painting + EggCodexPainting.MapEntry: Painting + EndOfTimePainting.MapEntry: Painting + RatKingPainting.MapEntry: Painting + AuroraBrick.MapEntry: "" + AuroraBrickDoor.MapEntry: "" + AuroraIce.MapEntry: "" + DoorBombShooter.MapEntry: "" + PermafrostIce.MapEntry: "" + Touchstone.MapEntry: Touchstone + TouchstoneLootbox.MapEntry: "" + AuroracleTrophy.MapEntry: Trophy + Auroracle.MapEntry: Music Box + CeirosTrophy.MapEntry: Trophy + CombatShrine.MapEntry: Mysterious Shrine + EvasionShrine.MapEntry: Mysterious Shrine + HotspringFountain.MapEntry: "" + MagmiteShrine.MapEntry: The Boi + WitShrine.MapEntry: Mysterious Shrine + DashBarrier.MapEntry: "" + JarTall.MapEntry: Stamina Jar + ManabondTile.MapEntry: Manabond + TempleChestSimple.MapEntry: "" + TempleLootBubble.MapEntry: "" + VerletBanner.MapEntry: "" + DestructableGlass.MapEntry: "" + ForgeActor.MapEntry: "" + ForgeDoor.MapEntry: Forge Door + ForgeInnerDoor.MapEntry: Forge Door + RedBannerShort.MapEntry: "" + SandstoneDoor.MapEntry: "" + CrystalSlimeSpawner.MapEntry: "" + DashableDoor.MapEntry: "" + DoorGears.MapEntry: "" + DoorLasers.MapEntry: "" + DoorVertical.MapEntry: "" + EntranceDoor.MapEntry: Vitric Temple Door + DynamicGear.MapEntry: "" + GearPuzzleOrigin.MapEntry: "" + ObjectiveGear.MapEntry: "" + LightActor.MapEntry: "" + EmptyHolder.MapEntry: "" + Lens.MapEntry: "" + LightBlocker.MapEntry: "" + LightGoal.MapEntry: "" + Reflector.MapEntry: "" + LowWindBanner.MapEntry: "" + MainForge.MapEntry: Vitric Forgeheart + NPCSpawner.MapEntry: "" + OldCeirosShrine.MapEntry: "" + SoundPuzzleDoor.MapEntry: "" + TallWindow.MapEntry: "" + TallWindowCrystal.MapEntry: "" + TallWindowLava.MapEntry: "" + TempleCandle.MapEntry: Candle + TempleCandleCrystal.MapEntry: Candle + TempleCeirosFountain.MapEntry: Fountain + TempleWallCandle.MapEntry: Candle + TutorialDoor1.MapEntry: "" + TutorialDoor2.MapEntry: "" + VitricPillarWall.MapEntry: "" + VitricPillarWallCrystal.MapEntry: "" + VitricPillarWallLava.MapEntry: "" + VitricPillarWallShort.MapEntry: "" + WindsRoomActor.MapEntry: "" + VitricBannerSmall.MapEntry: "" + VitricBanner.MapEntry: "" + VitricBossAltar.MapEntry: Ceiro's Altar + VitricBreakableVases.MapEntry: Pot + VitricDecor1x1.MapEntry: "" + VitricDecor1x1Inverted.MapEntry: "" + VitricDecor1x2.MapEntry: "" + VitricDecor1x2Inverted.MapEntry: "" + VitricDecor2x1.MapEntry: "" + VitricDecor2x1Inverted.MapEntry: "" + VitricDecor2x2.MapEntry: "" + VitricDecor2x2Inverted.MapEntry: "" + // VitricGiantCrystal.MapEntry: "" + // VitricLargeCrystal.MapEntry: "" + VitricLootBox.MapEntry: "" + // VitricMediumCrystal.MapEntry: "" + VitricOre.MapEntry: Vitric Ore + VitricOreFloat.MapEntry: Vitric Ore + VitricPylon.MapEntry: Vitric Pylon + VitricRoundCactus.MapEntry: "" + VitricSmallCactus.MapEntry: "" + // VitricSmallCrystal.MapEntry: "" + VitricSpike.MapEntry: "" + VitricBathtub.MapEntry: "" + VitricBed.MapEntry: "" + VitricBookcase.MapEntry: "" + VitricCandelabra.MapEntry: "" + VitricCandle.MapEntry: "" + VitricChair.MapEntry: "" + VitricChandelier.MapEntry: "" + VitricClock.MapEntry: "" + VitricDresser.MapEntry: "" + VitricLamp.MapEntry: "" + VitricLantern.MapEntry: "" + VitricPiano.MapEntry: "" + VitricSink.MapEntry: "" + VitricSofa.MapEntry: "" + VitricTable.MapEntry: "" + VitricWorkbench.MapEntry: "" + VitricDoorClosed.MapEntry: "" + VitricDoorOpen.MapEntry: "" + TempleChair.MapEntry: Chair + TempleLargeVase.MapEntry: Large Vase + TempleLargeVaseCrystal.MapEntry: Large Vase + TempleWorkbench.MapEntry: Workbench + TempleThrone.MapEntry: Throne + TempleFloorWeaponRack.MapEntry: Weapon Rack + TempleTable.MapEntry: Table + TempleTableCrystal.MapEntry: Table + TempleWeaponRack0.MapEntry: Weapon Rack + TempleWeaponRack1.MapEntry: Weapon Rack + TempleWeaponRack2.MapEntry: Weapon Rack + TempleWeaponRack3.MapEntry: Weapon Rack + TempleThingamajig.MapEntry: Weapon Rack + VitricBoss1.MapEntry: Music Box + VitricBoss2.MapEntry: Music Box + VitricPassive.MapEntry: Music Box + VitricTemple.MapEntry: Music Box + Miniboss.MapEntry: Music Box + TempleBrick.MapEntry: "" + LeafOvergrow.MapEntry: "" + BrickOvergrow.MapEntry: "" + StoneOvergrow.MapEntry: "" + Springstone.MapEntry: "" + ShrineBrazier.MapEntry: "" + WitTile.MapEntry: "" + AncientSandstone.MapEntry: "" + AncientSandstoneTile.MapEntry: "" + VitricBrick.MapEntry: "" + VitricCactus.MapEntry: "" + VitricGlass.MapEntry: "" + VitricSand.MapEntry: "" + VitricSoftSand.MapEntry: "" + VitricSandPlain.MapEntry: "" + // VitricGiantCrystal.MapEntry: "" + // VitricLargeCrystal.MapEntry: "" + // VitricMediumCrystal.MapEntry: "" + // VitricSmallCrystal.MapEntry: "" +} + +Projectiles: { + ArtifactItemProj.DisplayName: Artifact + GlassBubble.DisplayName: Volatile Bubble + GlassBubbleFragment.DisplayName: Glass Shard + GlassHammer.DisplayName: Woven Hammer + GlassRaiseSpike.DisplayName: Raised Glass Structure + GlassSpear.DisplayName: Woven Hammer + GlassSword.DisplayName: Glass Sword + LavaLob.DisplayName: Hot Lob + Whirlwind.DisplayName: Spinning Blades + InkBlob.DisplayName: Rainbow Ink + InkBlobGravity.DisplayName: Rainbow Ink + SpewBlob.DisplayName: Aurora Shard + SqueezeTell.DisplayName: Tentacle Warning + TentacleTell.DisplayName: Tentacle Warning + TentacleTrail.DisplayName: Trail + FinalLaser.DisplayName: Raging Fire + GlassSpike.DisplayName: Glass Spike + LavaDart.DisplayName: Magma Shot + TelegraphedGlassSpike.DisplayName: Glass Spike + MinigunTurret.DisplayName: Gun turret + PistolTurret.DisplayName: Gun turret + ShotgunTurret.DisplayName: Gun turret + BreachCannonSentry.DisplayName: Breach Cannon + ExplosiveFlare.DisplayName: Explosive Flare + FlareShrapnel.DisplayName: Explosive Shrapnel + OrbitalStrike.DisplayName: Orbital Strike + OrbitalStrikeRing.DisplayName: Orbital Strike + ScrappodProjectile.DisplayName: Scrappod + ScrappodScrapnel.DisplayName: Scrapnel + ScrapshotShrapnel.DisplayName: Explosive Shrapnel + SpotterDrone.DisplayName: Breacher Drone + SupplyBeaconProj.DisplayName: Supply Beacon + ArchaeologistsWhip_Whip.DisplayName: Archaeologist's Whip + AztecDeathSaxophoneHoldout.DisplayName: Aztec Death Saxophone + PerfectlyGenericPet.DisplayName: Perfectly Generic Object + SandscriptBook.DisplayName: Sandscript + CloudstrikeShot.DisplayName: Electro Shock + SkullBomb.DisplayName: Skull Bomb + SkullBusterBullet.DisplayName: Bullet + SkullBusterProj.DisplayName: Skull Buster + SkullBusterReload.DisplayName: Skull Buster + SkullbusterSkull.DisplayName: Skullbomb + ThousandthDegreeProjectile.DisplayName: Thousandth Degree + ThousandthDegreeProjectileFired.DisplayName: Blazing Wheel + FeralWolfMountBite.DisplayName: Crushing Jaws + SlimePrinceMinion.DisplayName: Slime Prince + AmethystShard.DisplayName: Amethyst Shard + RubyDagger.DisplayName: Ruby Dagger + SparklingBulletProj.DisplayName: Sparkling Bullet + TopazShard.DisplayName: Topaz Shard + TopazShield.DisplayName: Topaz Shield + TopazShieldFade.DisplayName: Topaz Shield + BloodAmuletBolt.DisplayName: Ghoul + BloodBolt.DisplayName: Blood Bolt + BloodBolterExplosion.DisplayName: Blood Bolter + BloodBolterHeldProj.DisplayName: Blood bolter + FleshApparation.DisplayName: Flesh apparation + GluttonyGhoul.DisplayName: Ghoul + GluttonyHandle.DisplayName: Gluttony + GravediggerSlam.DisplayName: Grave digger + GravediggerSwing.DisplayName: Grave digger + RadculasRapierSwungBlade.DisplayName: Radculas Rapier + RadculasRapierTeleport.DisplayName: Radculas Rapier + EchochainWhipAltProjectile.DisplayName: Echochain Aura + EchochainWhipAltProjectileChain.DisplayName: Echo Chain + EchochainWhipProjectile.DisplayName: Echochain + HauntedDaggerProjectile.DisplayName: Haunted Dagger + PoltergeistMinion.DisplayName: Haunted Weapon + TaintedGreataxeProjectile.DisplayName: Ethereal Greataxe + CopperObol.DisplayName: Obol + GoldObol.DisplayName: Obol + ObolImpact.DisplayName: Obol Star + PlatinumObol.DisplayName: Obol + SilverObol.DisplayName: Obol + ManEaterPotMinion.DisplayName: Tamed Man Eater + SlitherringWhip.DisplayName: Slither Whip + GrayGooProj.DisplayName: Gray Goo + ThunderBeadsProj.DisplayName: Thunder Beads + ThunderbussShot.DisplayName: Electro Shock + AquaticBolt.DisplayName: Waterbolt + DruidThorn.DisplayName: Enchanted Thorn + Fireball.DisplayName: Fireball + MagicBolt.DisplayName: Magical bolt + Shock.DisplayName: Shock Bolt + BalloonGunBalloon.DisplayName: Balloon + BizarreIce.DisplayName: Bizarre Potion + BizarrePotionProj.DisplayName: Bizarre Potion + BladesawSwungBlade.DisplayName: Bladesaw + CoachGunBomb.DisplayName: Dynamite + CoachGunEmber.DisplayName: Ember + CoachGunMuzzleFlash.DisplayName: Muzzle Flash + CoachGunRing.DisplayName: Coach Bomb + CoilStaticShock.DisplayName: Static Shock + CopperCoilWhip.DisplayName: Copper Coil + DiceProj.DisplayName: Dice + DiscordantBolt.DisplayName: Discordant Bolt + DualCrossHeld.DisplayName: Double Cross + EarthdusterHoldout.DisplayName: Earthduster + EarthdusterRing.DisplayName: Ring + ElectroArrowProjectile.DisplayName: Electro Arrow + EnchantedWateringCanProj.DisplayName: Enchanted Watering Can + FiletSlash.DisplayName: Slash + FryingPanBonk.DisplayName: Frying Pan + FryingPanProj.DisplayName: Frying Pan + GeodeBowExplosion.DisplayName: Geode Explosion + GeodeBowGrowth.DisplayName: Geode Growth + GeodeBowProj.DisplayName: Geode Bow + GeodeBowShrapnel.DisplayName: Geode Shrapnel + GraveBusterHeld.DisplayName: Grave Buster + GraveSlash.DisplayName: Slash + GunchuckProj.DisplayName: Sanguine Flayer + HeartStatueSentry.DisplayName: Heart Statue? + ImpactSMGExplosion.DisplayName: Explosion + ImpactSMGHoldout.DisplayName: Impact SMG + ImpactSMGShot.DisplayName: Impact SMG Shot + MagmaGunPhantomProj.DisplayName: Magma Glob + SlingHeldProjectile.DisplayName: Sling + SlingMushroomProjectile.DisplayName: Shroom + SlingSeedProjectile.DisplayName: Seed + SlingStoneProjectile.DisplayName: Stone + HauntedSoul.DisplayName: Soul + SoilgunCoinsProjectile.DisplayName: Coin + SoilgunCrimsandSoil.DisplayName: Soil + SoilgunDirtSoil.DisplayName: Soil + SoilgunEbonsandSoil.DisplayName: Soil + SoilgunExplosion.DisplayName: Explosion + SoilgunHoldout.DisplayName: Soilgun + SoilgunIcicleProj.DisplayName: Icicle + SoilgunLifeSteal.DisplayName: Lifesteal Orb + SoilgunMudSoil.DisplayName: Soil + SoilgunPearlsandSoil.DisplayName: Soil + SoilgunSandGrain.DisplayName: Sand Grain + SoilgunSandSoil.DisplayName: Soil + SoilgunSiltSoil.DisplayName: Soil + SoilgunSlushSoil.DisplayName: Soil + SoilgunVitricCrystals.DisplayName: Volatile Crystal + SoilgunVitricSandSoil.DisplayName: Soil + ThrusterEmber.DisplayName: Thruster + TinCoilWhip.DisplayName: Tin Coil + CrescentOrb.DisplayName: Lunar Orb + CrescentQuarterstaffProj.DisplayName: Crescent Quarterstaff + DianeCrescant.DisplayName: Crescant + MoonfuryProj.DisplayName: Moonfury Spike + MoonfuryRing.DisplayName: Orbital Strike + MoonstoneArrowProj.DisplayName: Moonlit Arrow + MoonstoneArrowRing.DisplayName: Orbital Strike + MoonstoneHamaxeHoldout.DisplayName: Moonstone Hamaxe + MoonstoneHamaxeRing.DisplayName: Explosion + ShakerBall.DisplayName: Shaker + PaleKnight.DisplayName: Pale Knight + PalestoneDummy.DisplayName: Pale Slash + PalestoneSlash.DisplayName: Pale Slash + AuroraBellProj.DisplayName: Aurora Bell + AuroraBellRing.DisplayName: Aurora Bell + AuroraBellRingSmall.DisplayName: Aurora Bell + AuroracleInkBullet.DisplayName: Auroracle Ink + AuroraThroneMountWhip.DisplayName: Tentacle + OctogunTentapistol.DisplayName: Tentapistol + OverflowingUrnProj.DisplayName: Overflowing Urn + TentacleHookProj.DisplayName: Tentacle Hook + StarwoodBoomerangProjectile.DisplayName: Starwood Boomerang + StarwoodScepterSummonEmpowered.DisplayName: Empowered Star + StarwoodScepterSummonSplit.DisplayName: Split Star + StarwoodSlingshotFragment.DisplayName: Star Fragment + StarwoodSlingshotStar.DisplayName: Shooting Star + StarwoodStaffFallingStar.DisplayName: Falling Star + StarwoodStaffProjectile.DisplayName: Starshot + BuzzsawBlood1.DisplayName: Buzzsaw + BuzzsawProj.DisplayName: Steamsaw + BuzzsawProj2.DisplayName: Buzzsaw + CogAmmoProjectile.DisplayName: Cog + CogwheelHitbox.DisplayName: Cogwheel + JetwelderCrawler.DisplayName: Crawler + JetwelderFinal.DisplayName: Bomber + JetwelderFinalMissle.DisplayName: Rocket + JetwelderFlame.DisplayName: Jetwelder + JetwelderGatler.DisplayName: Gatler + JetwelderJumper.DisplayName: Jumper + JetwelderJumperExplosion.DisplayName: Rocket + JetwelderJumperMissle.DisplayName: Grenade + JetwelderSelector.DisplayName: Jetwelder + PhantomBuzzsaw.DisplayName: Buzzsaw + RebarProj.DisplayName: Rebar + RuneStaffHoldout.DisplayName: Shine Staff + RuneStaffHoldoutFlash.DisplayName: Shine Staff + RuneStaffProjectile.DisplayName: Shine Star + TempleSpearLaser.DisplayName: Point of Light + TempleSpearProjectile.DisplayName: Point of Light + ArrowMagma.DisplayName: Magma Arrow + CoachGunUpgradeBomb.DisplayName: Crystal Bomb + CoachGunUpgradeShards.DisplayName: Crystal Shards + FacetProjectile.DisplayName: Facet + GlassShard.DisplayName: Glass Spike + IgnitionGauntletCharge.DisplayName: Ignition Gauntlets + IgnitionGauntletCone.DisplayName: Ignition Gauntlets + IgnitionGauntletLaunch.DisplayName: Ignition Gauntlets + IgnitionGauntletsImpactRing.DisplayName: Ignition Gauntlets + IgnitionPunch.DisplayName: Ignition Gauntlets + IgnitionPunchPhantom.DisplayName: Ignition Gauntlets + LatticeProjectile.DisplayName: Lattice + MagmaArrowProj.DisplayName: Magma Arrow + MagmiteVacpackHoldout.DisplayName: Magmite Vacpack + MagmiteVacpackProjectile.DisplayName: Bouncy Magmite + NeedlerEmber.DisplayName: Needle + NeedlerExplosion.DisplayName: Needle + NeedlerProj.DisplayName: Needle + PhoenixStormMinion.DisplayName: Phoenix + RecursiveFocusLaser.DisplayName: Infernal Laser + RecursiveFocusProjectile.DisplayName: Infernal Crystal + VitricArmorProjectile.DisplayName: Enchanted Glass + VitricArmorProjectileIdle.DisplayName: Enchanted Glass + VitricBookProjectile.DisplayName: Vitric Book 1 + VitricBookProjectiletileCheck.DisplayName: Vitric Book 2 + VitricBookSpikeTrap.DisplayName: Vitric Spike Trap + VitricBulletCrystalExplosion.DisplayName: Explosion + VitricBulletCrystalProjectile.DisplayName: Vitric Crystal + VitricBulletProjectile.DisplayName: Vitric Bullet + VitricSwordProjectile.DisplayName: Enchanted Glass + EnemyMagnetShot.DisplayName: Electro Shock + AngryCrescentDeathProjectile.DisplayName: Crescent Shard + DreambeastProj.DisplayName: Dream Shard + DreambeastProjHome.DisplayName: Dream Essence + DreamprismSlam.DisplayName: Slam + SnoobelCollider.DisplayName: Snoobel + FirebugMagma.DisplayName: Molten glass + ConstructRing.DisplayName: Explosion + PelterConstructArrow.DisplayName: Glass Arrow + PelterConstructArrowLarge.DisplayName: Glass Arrow + KettleMortar.DisplayName: Magma Shot + SnakeSpit.DisplayName: Molten glass + PinkSeaSaltProjectile.DisplayName: Sea Salt + TableSaltProjectile.DisplayName: Table Salt + Dart.DisplayName: Cursed Dart + SawbladeSmall.DisplayName: Cursed Sawblade + Spear.DisplayName: Cursed Spear +} + +Biomes: { + HotspringBiome: { + DisplayName: Hotsprings + TownNPCDialogueName: the Hotspring Biome + } + + MoonstoneBiome: { + DisplayName: Moonstone + TownNPCDialogueName: the Moonstone Biome + } + + OvergrowBiome: { + DisplayName: "[PH]Overgrowth" + TownNPCDialogueName: the Overgrow Biome + } + + PermafrostTempleBiome: { + DisplayName: Auroracle Temple + TownNPCDialogueName: the Permafrost Temple Biome + } + + VitricDesertBiome: { + DisplayName: Vitric Desert + TownNPCDialogueName: the Vitric Desert Biome + } + + VitricTempleBiome: { + DisplayName: Vitric Forge + TownNPCDialogueName: the Vitric Temple Biome + } + + CombatShrineBiome: { + DisplayName: Combat Shrine Biome + TownNPCDialogueName: the Combat Shrine Biome + } + + EvasionShrineBiome: { + DisplayName: Evasion Shrine Biome + TownNPCDialogueName: the Evasion Shrine Biome + } +} + +NPCs: { + Glassweaver.DisplayName: Glassweaver + GlassweaverWaiting.DisplayName: Glassweaver + ArenaActor.DisplayName: "" + EscapePlatform.DisplayName: "" + GoldPlatform.DisplayName: "" + IcePlatform.DisplayName: "" + IcePlatformSmall.DisplayName: "" + SquidBoss.DisplayName: Auroracle + ArenaBottom.DisplayName: "" + VitricBackdropLeft.DisplayName: "" + VitricBackdropRight.DisplayName: "" + VitricBoss.DisplayName: Ceiros + VitricBossCrystal.DisplayName: Resonant Crystal + VitricBossPlatformDown.DisplayName: "" + VitricBossPlatformDownSmall.DisplayName: "" + VitricBossPlatformUp.DisplayName: "" + VitricBossPlatformUpSmall.DisplayName: "" + BossRushOrb.DisplayName: ??? + SoulNibbler.DisplayName: Soul Nibbler + CrescentCaster.DisplayName: Crescent Caster + Blover.DisplayName: Blover + TreeBat.DisplayName: Tree Bat + Warbanner.DisplayName: Haunted Warbanner + Fogbinder.DisplayName: Fogbinder + LootWraith.DisplayName: Loot Wraith + AngryCrescent.DisplayName: Angry Crescent + Dreamprism.DisplayName: Dreamprism + Crusher.DisplayName: Masher + Snoobel.DisplayName: Snoobel + SwordEnemy.DisplayName: Sky Splicer + Crow.DisplayName: ??? + GloomSlime.DisplayName: Gloom Slime + BoomBug.DisplayName: Firebug + CoolmiteLarge.DisplayName: Coolmismer + CoolmitePassive.DisplayName: Coolmite + CoolmiteSmol.DisplayName: Coolmini + CrystalPopper.DisplayName: Sand Bat + CrystalSlime.DisplayName: Crystal Slime + DesertWisp.DisplayName: Desert Wisp + FlyingGruntConstruct.DisplayName: Flying Grunt Construct + FlyingPelterConstruct.DisplayName: Flying Pelter Construct + GruntConstruct.DisplayName: Grunt Construct + JuggernautConstruct.DisplayName: Juggernaut Construct + PelterConstruct.DisplayName: Pelter Construct + ShieldConstruct.DisplayName: Shield Construct + SupporterConstruct.DisplayName: Supporter Construct + KettleCreature.DisplayName: Magmortar + LesserFirebug.DisplayName: Lesser Firebug + MagmiteLarge.DisplayName: Magmificent + MagmitePassive.DisplayName: Magmite + MagmiteSmol.DisplayName: Magmini + Snake.DisplayName: Sandviper + BerrySlime.DisplayName: Slimeberry + TouchstoneWisp.DisplayName: Aurora Spirit +} + +Buffs: { + GlassweaverDot: { + DisplayName: Incineration + Description: Burning incredibly fast! + } + + Claustrophobia: { + DisplayName: Claustrophobia + Description: Stuck in wisp form! + } + + CoughDropsBuff: { + DisplayName: Cough Drops + Description: Your speed and damage are boosted + } + + Dreamwarp: { + DisplayName: Dreamwarp + Description: You are going insane! + } + + FerrofluidDraftBuff: { + DisplayName: Ferrofluid Draft + Description: Nearby Items gravitate towards you + } + + FoodBuff: { + DisplayName: Nourished + Description: + ''' + Nourised by rich food, granting: + + ''' + } + + ForestTonic: { + DisplayName: Forest Tonic + Description: + ''' + Immunity to poison + Slowly regenerate life + ''' + } + + HotspringHeal: { + DisplayName: Refreshing Dip + Description: The hot springs restore your body and mind + } + + Illuminant: { + DisplayName: Illuminant + Description: Glowing brightly! + } + + MossRegen: { + DisplayName: Mending Moss + Description: Regenerating life quickly! + } + + Overcharge: { + DisplayName: Overcharge + Description: Greatly reduced armor + } + + PrismaticDrown: { + DisplayName: Prismatic Drown + Description: You are drowning in prismatic waters! + } + + ProtectiveShard: { + DisplayName: Protective Shards + Description: Incoming damage reduced by 25% + } + + Rage: { + DisplayName: Rage + Description: Increased damage and greatly increased knockback + } + + Slimed: { + DisplayName: Slimed + Description: eww + } + + Squash: { + DisplayName: Pancaked + Description: You're flat now. + } + + StaticShock: { + DisplayName: Static Shock + Description: Your defense is greatly lowered! + } + + GrayGooSummonBuff: { + DisplayName: Gray Goo + Description: Nanomachines, son! + } + + HauntedDaggerSummonBuff: { + DisplayName: Haunted Daggers + Description: Death by a hundred cuts + } + + PalestoneSummonBuff: { + DisplayName: Pale Knight + Description: No cost too great. + } + + StarwoodSummonBuff: { + DisplayName: Starwood Minion + Description: The sentient stars shall protect you! + } + + SupplyBeaconDamage: { + DisplayName: Supply Beacon + Description: Damage increased + } + + SupplyBeaconDefense: { + DisplayName: Supply Beacon + Description: Defense increased + } + + SupplyBeaconHeal: { + DisplayName: Supply Beacon + Description: Regeneration increased + } + + ArchaeologistsBuff: { + DisplayName: Treasure buff + Description: Your minions do more contact damage + } + + PerfectlyGenericPetBuff: { + DisplayName: Perfectly Generic Pet + Description: Made of grist + } + + WolfBleeding: { + DisplayName: Gored + Description: Gored by a wolf + } + + FleshApparationBuff: { + DisplayName: Flesh apparation + Description: A chunk of your flesh is following you! + } + + RadculasRapierCooldown: { + DisplayName: Radcula's Teleport Cooldown + Description: The rapier's energy seems deminished + } + + ShovelQuickFall: { + DisplayName: Quick fall + Description: You slammin + } + + ShovelSlowFall: { + DisplayName: Slow fall + Description: Falling Speed Reduced + } + + SoulSuck: { + DisplayName: Soul Suck + Description: You getting sucked + } + + GlowingObsidianFire: { + DisplayName: Infernal flames + Description: Burning up! + } + + CorpseflowerBuff: { + DisplayName: Corpseflowered + Description: You have been cursed by the corpseflower + } + + ManEaterPotBuff: { + DisplayName: Man Eaters + Description: Quite the hairdo you have! + } + + BarbedKnifeBleed: { + DisplayName: Deep gash + Description: You're bleeding out! + } + + BizarrePotionPoisonDebuff: { + DisplayName: Bizarre Poison + Description: You poisoned + } + + BrokenGlassesBuff: { + DisplayName: Broken Glasses + Description: You cant see, loser! + } + + CoachDebuff: { + DisplayName: Coach Debuff + Description: 10% increased damage + } + + FiletFrenzyBuff: { + DisplayName: Blood Frenzy + Description: Increased melee speed, but decreased crit rate on Filet Knife + } + + HeartStatueDrain: { + DisplayName: Heart Siphon + Description: "" + } + + ImpactSMGBuff: { + DisplayName: Heated Up! + Description: "" + } + + IronheartBuff: { + DisplayName: Ironheart + Description: you have decaying extra barrier and defense + } + + PlexusChaliceBuff: { + DisplayName: Plexus Resistance + Description: +30% {{Inoculation}} + } + + MoonfuryDebuff: { + DisplayName: Dreamfire + Description: Next Moonfury hit has increased damage + } + + AuroraThroneMountMinionDebuff: { + DisplayName: Inked + Description: You take increased damage + } + + UrnFreeze: { + DisplayName: Urn Freeze + Description: The pot is out of control! + } + + InoculationPotionBuff: { + DisplayName: Inoculated + Description: +30% Inoculation + } + + NoShieldPot: { + DisplayName: Barrier Sickness + Description: Cannot consume more barrier potions + } + + ShieldDegenReduction: { + DisplayName: Barrier Affinity + Description: Barrier sticks to you better + } + + StarstruckDebuff: { + DisplayName: Starstruck + Description: Reach for the stars + } + + CogwheelBuff: { + DisplayName: Cogwheel + Description: They see me rollin' + } + + Exposed: { + DisplayName: Exposed + Description: Taking extra damage! + } + + MagmaBurn: { + DisplayName: Magma burn + Description: Liquid glass melts away at you! + } + + PhoenixStormSummonBuff: { + DisplayName: Phoenix Minion + Description: A fiery bird follows you + } + + RefractiveBladeBuff: { + DisplayName: Melting + Description: Taking additional melee damage! + } + + SwelteredDeBuff: { + DisplayName: Sweltered + Description: Damage taken increased by 35% + } + + Fogbinded: { + DisplayName: Fogbound + Description: Bound to the Fogbinder + } + + TouchstoneWispBuff: { + DisplayName: Aurora Curiosity + Description: + ''' + What lies below? + Increased mining speed + ''' + } +} + +Prefixes: { + Carnal.DisplayName: Carnal + Crystalline.DisplayName: Crystalline + Eldritch.DisplayName: Eldritch + Ephemeral.DisplayName: Ephemeral + Occult.DisplayName: Occult + Reckless.DisplayName: Reckless + Sapping.DisplayName: Sapping + Unfaithful.DisplayName: Unfaithful + DefensivePrefix.DisplayName: Defensive + DoTResistPrefix1.DisplayName: Healthy + DoTResistPrefix2.DisplayName: Protected + DoTResistPrefix3.DisplayName: Blessed + LayeredPrefix.DisplayName: Layered + PlatedPrefix.DisplayName: Plated + ReinforcedPrefix.DisplayName: Reinforced + StaminaPrefix1.DisplayName: Sparkling + StaminaPrefix2.DisplayName: Shining + StaminaPrefix3.DisplayName: Glowing + StaminaPrefix4.DisplayName: Radiant +} From b4c73516bd3b66f02634c36118af4521a34eb548 Mon Sep 17 00:00:00 2001 From: bobfishkins23 Date: Tue, 12 Nov 2024 23:13:47 -0500 Subject: [PATCH 2/4] Frost flail updates --- Content/Items/BaseTypes/AbstractHeavyFlail.cs | 4 +- Content/Items/Forest/Weapons.HeavyFlail.cs | 19 +++--- Content/Items/Snow/Weapons.FrostFlail.cs | 58 ++++++++++++++----- 3 files changed, 56 insertions(+), 25 deletions(-) diff --git a/Content/Items/BaseTypes/AbstractHeavyFlail.cs b/Content/Items/BaseTypes/AbstractHeavyFlail.cs index 500ed327d..af621c8e8 100644 --- a/Content/Items/BaseTypes/AbstractHeavyFlail.cs +++ b/Content/Items/BaseTypes/AbstractHeavyFlail.cs @@ -235,7 +235,7 @@ public override bool OnTileCollide(Vector2 oldVelocity) { var hitbox = new Rectangle((int)chainPos[k].X - 4, (int)chainPos[k].Y - 4, 8, 8); - if (hitbox.Intersects(projHitbox)) + if (hitbox.Intersects(targetHitbox)) return true; } } @@ -262,7 +262,7 @@ public override bool PreDraw(ref Color lightColor) for (int k = 0; k < max; k++) { - var pos = Vector2.Lerp(Projectile.Center, Owner.Center, k / (float)max); + var pos = Vector2.Lerp(Owner.Center, Projectile.Center, k / (float)max); Rectangle source = new Rectangle(0, 0, 8, 22); if (k > 1) diff --git a/Content/Items/Forest/Weapons.HeavyFlail.cs b/Content/Items/Forest/Weapons.HeavyFlail.cs index 738ee2ede..379a44ec6 100644 --- a/Content/Items/Forest/Weapons.HeavyFlail.cs +++ b/Content/Items/Forest/Weapons.HeavyFlail.cs @@ -48,17 +48,20 @@ internal class HeavyFlailProjectile : AbstractHeavyFlailProjectile public override void OnImpact(bool wasTile) { - Helpers.Helper.PlayPitched("Impacts/StoneStrike", 1, 0, Projectile.Center); + if (wasTile) + { + Helpers.Helper.PlayPitched("Impacts/StoneStrike", 1, 0, Projectile.Center); - if (Owner == Main.LocalPlayer) - CameraSystem.shake += 10; + if (Owner == Main.LocalPlayer) + CameraSystem.shake += 10; - for (int k = 0; k < 32; k++) - { - Dust.NewDust(Projectile.position, Projectile.width, Projectile.height, DustID.Stone); - } + for (int k = 0; k < 32; k++) + { + Dust.NewDust(Projectile.position, Projectile.width, Projectile.height, DustID.Stone); + } - Projectile.NewProjectile(null, Projectile.Center + Vector2.UnitY * 8, Vector2.Zero, ModContent.ProjectileType(), 0, 0); + Projectile.NewProjectile(Projectile.GetSource_FromThis(), Projectile.Center + Vector2.UnitY * 8, Vector2.Zero, ModContent.ProjectileType(), 0, 0); + } } } diff --git a/Content/Items/Snow/Weapons.FrostFlail.cs b/Content/Items/Snow/Weapons.FrostFlail.cs index 33b591706..5a1b580e8 100644 --- a/Content/Items/Snow/Weapons.FrostFlail.cs +++ b/Content/Items/Snow/Weapons.FrostFlail.cs @@ -48,24 +48,37 @@ internal class FrostFlailProjectile : AbstractHeavyFlailProjectile public override int MaxLength => 160; - public override void OnImpact(bool wasTile) + public override void AI() { - Helpers.Helper.PlayPitched("Magic/FrostHit", 1, 0, Projectile.Center); - - if (Owner == Main.LocalPlayer) - CameraSystem.shake += 8; + base.AI(); - for (int k = 0; k < 50; k++) + for (int k = 0; k < 2; k++) { - Dust.NewDust(Projectile.position, Projectile.width, Projectile.height, DustID.Ice); + Dust.NewDust(Projectile.Center - Vector2.One * 20, 40, 40, DustID.IceTorch); } + } - for (int k = 0; k < 3; k++) + public override void OnImpact(bool wasTile) + { + if (wasTile) { - Projectile.NewProjectile(Projectile.GetSource_FromThis(), Projectile.Center, Vector2.One.RotatedByRandom(6.28f) * 5, ModContent.ProjectileType(), Projectile.damage / 2, 0, Projectile.owner); - } + Helpers.Helper.PlayPitched("Magic/FrostHit", 1, 0, Projectile.Center); + + if (Owner == Main.LocalPlayer) + CameraSystem.shake += 8; + + for (int k = 0; k < 50; k++) + { + Dust.NewDust(Projectile.position, Projectile.width, Projectile.height, DustID.Ice); + } + + for (int k = 0; k < 3; k++) + { + Projectile.NewProjectile(Projectile.GetSource_FromThis(), Projectile.Center, Vector2.One.RotatedByRandom(6.28f) * 3, ModContent.ProjectileType(), Projectile.damage / 2, 0, Projectile.owner); + } - Projectile.NewProjectile(null, Projectile.Center + Vector2.UnitY * 8, Vector2.Zero, ModContent.ProjectileType(), 0, 0); + Projectile.NewProjectile(Projectile.GetSource_FromThis(), Projectile.Center + Vector2.UnitY * 8, Vector2.Zero, ModContent.ProjectileType(), 0, 0); + } } } @@ -81,17 +94,32 @@ public override void SetDefaults() Projectile.timeLeft = 120; Projectile.friendly = true; Projectile.aiStyle = -1; - Projectile.penetrate = 3; + Projectile.penetrate = 15; } - public override bool OnTileCollide(Vector2 oldVelocity) + public override void AI() { - Projectile.penetrate -= 1; + Projectile.velocity.Y += 0.4f; + Projectile.rotation += Projectile.velocity.X * 0.1f; + + Projectile.velocity.X *= 0.99f; + + if (Projectile.timeLeft < 30) + Projectile.alpha = (int)((1 - Projectile.timeLeft / 30f) * 255); + + if (Main.rand.NextBool(5)) + Dust.NewDust(Projectile.position, 18, 18, DustID.IceTorch); + if (Main.rand.NextBool(15)) + Dust.NewDust(Projectile.position, 18, 18, DustID.Ice); + } + + public override bool OnTileCollide(Vector2 oldVelocity) + { if (Projectile.penetrate <= 0) return true; - Projectile.velocity += oldVelocity * -0.8f; + Projectile.velocity.Y += oldVelocity.Y * -0.8f; return false; } From 5c749eee8aa154f1cd25a358d5017809bb1374bc Mon Sep 17 00:00:00 2001 From: bobfishkins23 Date: Sun, 17 Nov 2024 10:55:45 -0500 Subject: [PATCH 3/4] Visuals for crack and particles --- Assets/Misc/AlphaCrack.png | Bin 0 -> 2244 bytes Content/Items/Snow/Weapons.FrostFlail.cs | 44 +++++++++++++++++++---- 2 files changed, 38 insertions(+), 6 deletions(-) create mode 100644 Assets/Misc/AlphaCrack.png diff --git a/Assets/Misc/AlphaCrack.png b/Assets/Misc/AlphaCrack.png new file mode 100644 index 0000000000000000000000000000000000000000..ba4d94737418dc889645b37edf2d7a1ebc14cfaf GIT binary patch literal 2244 zcmd5;jZ<1z7RRkMrqv{EcPA0Ql4&;GNu1h|AjZ$?q@Zy$-K;^0qRFbDD2i2L1T|l~ zcGDHD)96-=VY5b!JU$XpKnb#r9o-t0pdcb5WlW=h!bU|B@WBE}cJ@EmzB%`ud*40x zzH`s-ckaEnzD!5?zXyE}0)hCaB%eO#(o62*>*IO{UXWgQDX+?Ns3ZtyCP?pUc;ge( z5+RUB&F}ACdKUum%}6<&m~ka{Lo-?-&-(SdU*cxH+J5-lmvzMZo6mlibPaywz&oj= zSXlmO_7q^-4Zk%YEn}>giLOq&0 zQae=lZ~RA5z90Ut2>1N){ENuFLEf(gv}h+15**3r7}}BASDRaBOP0k{0Z~$C=M$|a z>DW`!fup4T&t7e&<@gg6);dFp@;uErK z#C=^7k~Sa6d@iJ$nfgg3H&4J;{Aj$dJDfa*%_?Wfrp`A5N{mazgK`iZmGHOo(&r8?e_`kC94 zy-T46$INXN*p?IOLISvbgqrEBw`#npiWg+`32C?cuiz!73g?ej>f-Bng+$<1Q)C|% z20Iz#T`at5o8m3{4QkgoP69_&Iv>bcCk_*$l$#Nr?k{-bYcvF9VrR-AZc&iB5gH~% zIf?-~cj<1&1x4gz7Y2u+rzjeN5HGz;RGYPua&`aW73im_V~O83WLNbm9?O^o<$Om? zu+*sJ3O0JrGWbMHXRvjIVOsBzz@htYoLou=(gcFNCXA`(M`auB~Sf1qj?bEDC7v_>c=n|Ql^b+Sl;8Eb~Vn(tt{>?i~NO6h>Y zx7+C$kBIq*8<~TN<0-dx&QHiHIFUK+!4pM;1HcMv#V}E^Q~m+9)U{U4u3zS~Jn$jo zp1oa+7-#7WX8US)t^~@F2OkxW+E(zeya2d{r9&q45+bXaEE(xQL2G|N=Z{Ye>u9^x zC#$ZOjcy|h(_3sSIGC1IjMA2iXZ~fd#MFC8L0|ry{5+IB*}5G2u|=plo~KWXoHci^ zOB3jEc%|Y@94G6~u}F8&N^Fh1MF^Hbvl;UB=6s`nCc)`=>8KZuI3MUI*FX~Z625rK zgU|IY{LAHU!5SnCBUwf_hlBfWN6>#OQiUya@Z?(x2S)&g`0q)Ca`gUi(b)Y)I#FI_ zsSS;UyI`94%wzQ~l z&ehUiio5@Acc}F>!ut#~c_0_cMm$;8suu$P z5pM<#^||o3O~efeqq%eOATB@ zSea@1+MV)ce4Wb!_TAAECx%DcR)%5`CqSFZU~HoIAxtd&$t5?z+jaGeRG$QU=Tlw- z(`VhqG%qVulQ>r_)ONWU3g`70X_W)2NtW)+RgIXJ$@oA-0TnB{LvGTS{hfa4c{QGn z>ADO6e+6G!Lwb8eex9C-)pFr(p(=}+qo z!0HJUquPvhpcF55Vsa+C>6S+x@+Zv@roN`Lr>a&xC&j_b+EQz%b^7vjr4;l-P(Sgi z{MDXBobdgaXpy2`gE60rGO#e)=wkQgo;gm?kzKPKeIuFUmWRe;Z`;qJms-D?m>|!- z{qWkXp!LHWuDJa70Q-Meeu%Bv30$lfveT7*mxU@9LaaY~fRou_)AHH*| NlrPdxbCNFJ_z$maR22XK literal 0 HcmV?d00001 diff --git a/Content/Items/Snow/Weapons.FrostFlail.cs b/Content/Items/Snow/Weapons.FrostFlail.cs index 5a1b580e8..c02c6a114 100644 --- a/Content/Items/Snow/Weapons.FrostFlail.cs +++ b/Content/Items/Snow/Weapons.FrostFlail.cs @@ -67,21 +67,56 @@ public override void OnImpact(bool wasTile) if (Owner == Main.LocalPlayer) CameraSystem.shake += 8; - for (int k = 0; k < 50; k++) + for (int k = 0; k < 30; k++) { Dust.NewDust(Projectile.position, Projectile.width, Projectile.height, DustID.Ice); } + for (int k = 0; k < 10; k++) + { + Dust.NewDust(Projectile.position, Projectile.width, Projectile.height, DustID.SnowSpray, 0, -1); + } + for (int k = 0; k < 3; k++) { Projectile.NewProjectile(Projectile.GetSource_FromThis(), Projectile.Center, Vector2.One.RotatedByRandom(6.28f) * 3, ModContent.ProjectileType(), Projectile.damage / 2, 0, Projectile.owner); } - Projectile.NewProjectile(Projectile.GetSource_FromThis(), Projectile.Center + Vector2.UnitY * 8, Vector2.Zero, ModContent.ProjectileType(), 0, 0); + Projectile.NewProjectile(Projectile.GetSource_FromThis(), Projectile.Center + Vector2.UnitY * 8, Vector2.Zero, ModContent.ProjectileType(), 0, 0); } } } + internal class FrostFlailCrack : ModProjectile, IDrawOverTiles + { + public override string Texture => AssetDirectory.Invisible; + + public override void SetDefaults() + { + Projectile.tileCollide = false; + Projectile.penetrate = -1; + Projectile.timeLeft = 200; + } + + public override bool PreDraw(ref Color lightColor) + { + return false; + } + + public void DrawOverTiles(SpriteBatch spriteBatch) + { + float prog = Projectile.timeLeft > 100 ? 1f : Projectile.timeLeft / 100f; + + Color color = Color.Lerp(new Color(150, 240, 255), new Color(50, 80, 150), prog); + color *= prog; + color.A = 0; + var tex = Assets.Misc.AlphaCrack.Value; + + spriteBatch.Draw(tex, Projectile.Center - Main.screenPosition, null, color, 0, tex.Size() / 2, Projectile.scale, SpriteEffects.None, 0); + spriteBatch.Draw(tex, Projectile.Center - Main.screenPosition, null, new Color(255, 255, 255, 0) * prog * 0.25f, 0, tex.Size() / 2, Projectile.scale, SpriteEffects.None, 0); + } + } + internal class FrostFlailShard : ModProjectile { public override string Texture => AssetDirectory.SnowItem + Name; @@ -107,11 +142,8 @@ public override void AI() if (Projectile.timeLeft < 30) Projectile.alpha = (int)((1 - Projectile.timeLeft / 30f) * 255); - if (Main.rand.NextBool(5)) + if (Main.rand.NextBool(10)) Dust.NewDust(Projectile.position, 18, 18, DustID.IceTorch); - - if (Main.rand.NextBool(15)) - Dust.NewDust(Projectile.position, 18, 18, DustID.Ice); } public override bool OnTileCollide(Vector2 oldVelocity) From c04458ae7deb7fda2e3a78c87e06b166f9e8a8a5 Mon Sep 17 00:00:00 2001 From: bobfishkins23 Date: Sun, 17 Nov 2024 11:20:54 -0500 Subject: [PATCH 4/4] Fix name --- Content/Items/Snow/Weapons.FrostFlail.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content/Items/Snow/Weapons.FrostFlail.cs b/Content/Items/Snow/Weapons.FrostFlail.cs index c02c6a114..c9a51cf55 100644 --- a/Content/Items/Snow/Weapons.FrostFlail.cs +++ b/Content/Items/Snow/Weapons.FrostFlail.cs @@ -19,7 +19,7 @@ internal class FrostFlail : AbstractHeavyFlail public override void SetStaticDefaults() { - DisplayName.SetDefault("Heavy Flail"); + DisplayName.SetDefault("Frost Flail"); Tooltip.SetDefault("Hold to swing a monstrous ball of ice\nCreates icy shards on impact, inflicting frostburn"); }