Updated Dune Wyrm map icon.

Updated Dune wyrn treasure bag sprite.
Updated debug sword.
This commit is contained in:
FyloZ 2020-06-05 19:17:22 -04:00
parent 8300ab0d36
commit 6d48fb7ef0
5 changed files with 7 additions and 5 deletions

View File

@ -5,13 +5,13 @@ namespace Decimation.Content.Debug
{ {
public class DebugSword : DecimationWeapon public class DebugSword : DecimationWeapon
{ {
public override string Texture => "Terraria/Item_" + ItemID.CopperShortsword; public override string Texture => "Terraria/Item_" + ItemID.TrueExcalibur;
protected override string ItemName => "Debug Sword"; protected override string ItemName => "Debug Sword";
protected override int Damages => 9999999; protected override int Damages => 9999999;
protected override void InitWeapon() protected override void InitWeapon()
{ {
item.CloneDefaults(ItemID.CopperShortsword); item.CloneDefaults(ItemID.TrueExcalibur);
} }
} }
} }

View File

@ -20,8 +20,8 @@ namespace Decimation.Content.Items.Boss.DuneWyrm
protected override void Init() protected override void Init()
{ {
item.consumable = true; item.consumable = true;
item.width = 24; item.width = 32;
item.height = 24; item.height = 32;
item.rare = Rarity.Rainbow.GetRarityValue(); item.rare = Rarity.Rainbow.GetRarityValue();
item.expert = true; item.expert = true;
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 585 B

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

@ -1,6 +1,7 @@
using System.IO; using System.IO;
using System.Linq; using System.Linq;
using Decimation.Content.Buffs.Debuffs; using Decimation.Content.Buffs.Debuffs;
using Decimation.Content.Items.Boss.DuneWyrm;
using Decimation.Content.NPCs.DuneWyrm.AncientTombCrawler; using Decimation.Content.NPCs.DuneWyrm.AncientTombCrawler;
using Decimation.Content.Projectiles; using Decimation.Content.Projectiles;
using Decimation.Lib.NPCs; using Decimation.Lib.NPCs;
@ -25,7 +26,6 @@ namespace Decimation.Content.NPCs.DuneWyrm
npc.defense = 15; npc.defense = 15;
npc.width = 116; npc.width = 116;
npc.height = 116; npc.height = 116;
npc.boss = true;
Main.npcFrameCount[npc.type] = 1; Main.npcFrameCount[npc.type] = 1;
npc.value = Item.buyPrice(gold: 12); npc.value = Item.buyPrice(gold: 12);
npc.npcSlots = 1f; npc.npcSlots = 1f;
@ -288,6 +288,8 @@ namespace Decimation.Content.NPCs.DuneWyrm
npc.netAlways = true; npc.netAlways = true;
npc.DeathSound = SoundID.NPCDeath18; npc.DeathSound = SoundID.NPCDeath18;
npc.HitSound = SoundID.NPCHit1; npc.HitSound = SoundID.NPCHit1;
npc.boss = true;
bossBag = ModContent.ItemType<DuneWyrmTreasureBag>();
undergroundSound = mod.GetLegacySoundSlot(SoundType.Custom, "Sounds/Custom/Earthquake"); undergroundSound = mod.GetLegacySoundSlot(SoundType.Custom, "Sounds/Custom/Earthquake");
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 900 B

After

Width:  |  Height:  |  Size: 3.3 KiB