Updated Dune Wyrm map icon.
Updated Dune wyrn treasure bag sprite. Updated debug sword.
This commit is contained in:
parent
8300ab0d36
commit
6d48fb7ef0
@ -5,13 +5,13 @@ namespace Decimation.Content.Debug
|
||||
{
|
||||
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 int Damages => 9999999;
|
||||
|
||||
protected override void InitWeapon()
|
||||
{
|
||||
item.CloneDefaults(ItemID.CopperShortsword);
|
||||
item.CloneDefaults(ItemID.TrueExcalibur);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -20,8 +20,8 @@ namespace Decimation.Content.Items.Boss.DuneWyrm
|
||||
protected override void Init()
|
||||
{
|
||||
item.consumable = true;
|
||||
item.width = 24;
|
||||
item.height = 24;
|
||||
item.width = 32;
|
||||
item.height = 32;
|
||||
item.rare = Rarity.Rainbow.GetRarityValue();
|
||||
item.expert = true;
|
||||
}
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 585 B After Width: | Height: | Size: 3.3 KiB |
@ -1,6 +1,7 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using Decimation.Content.Buffs.Debuffs;
|
||||
using Decimation.Content.Items.Boss.DuneWyrm;
|
||||
using Decimation.Content.NPCs.DuneWyrm.AncientTombCrawler;
|
||||
using Decimation.Content.Projectiles;
|
||||
using Decimation.Lib.NPCs;
|
||||
@ -25,7 +26,6 @@ namespace Decimation.Content.NPCs.DuneWyrm
|
||||
npc.defense = 15;
|
||||
npc.width = 116;
|
||||
npc.height = 116;
|
||||
npc.boss = true;
|
||||
Main.npcFrameCount[npc.type] = 1;
|
||||
npc.value = Item.buyPrice(gold: 12);
|
||||
npc.npcSlots = 1f;
|
||||
@ -288,6 +288,8 @@ namespace Decimation.Content.NPCs.DuneWyrm
|
||||
npc.netAlways = true;
|
||||
npc.DeathSound = SoundID.NPCDeath18;
|
||||
npc.HitSound = SoundID.NPCHit1;
|
||||
npc.boss = true;
|
||||
bossBag = ModContent.ItemType<DuneWyrmTreasureBag>();
|
||||
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 |
Loading…
Reference in New Issue
Block a user