Updated Great Dune Wyrm's name

This commit is contained in:
FyloZ 2020-06-10 19:38:09 -04:00
parent 2520570fa6
commit 1925ce1a84
4 changed files with 4 additions and 4 deletions

View File

@ -96,7 +96,7 @@ namespace Decimation.Content
{ {
bossChecklist.Call("AddBossWithInfo", "The Bloodshot Eye", 2.5f, bossChecklist.Call("AddBossWithInfo", "The Bloodshot Eye", 2.5f,
(Func<bool>) (() => DecimationWorld.downedBloodshotEye), "INSERT LATER"); (Func<bool>) (() => DecimationWorld.downedBloodshotEye), "INSERT LATER");
bossChecklist.Call("AddBossWithInfo", "The Dune Wyrm", 5.7f, bossChecklist.Call("AddBossWithInfo", "The Great Dune Wyrm", 5.7f,
(Func<bool>) (() => DecimationWorld.downedDuneWyrm), "INSERT LATER"); (Func<bool>) (() => DecimationWorld.downedDuneWyrm), "INSERT LATER");
bossChecklist.Call("AddBossWithInfo", "Arachnus", 20f, bossChecklist.Call("AddBossWithInfo", "Arachnus", 20f,
(Func<bool>) (() => DecimationWorld.downedArachnus), "INSERT LATER"); (Func<bool>) (() => DecimationWorld.downedArachnus), "INSERT LATER");

View File

@ -6,7 +6,7 @@ namespace Decimation.Content.Items.Placeable.DuneWyrm
{ {
internal class DuneWyrmTrophy : DecimationPlaceableItem internal class DuneWyrmTrophy : DecimationPlaceableItem
{ {
protected override string ItemName => "Dune Wyrm Trophy"; protected override string ItemName => "The Great Dune Wyrm Trophy";
protected override string ItemTooltip => "Achievement get!"; protected override string ItemTooltip => "Achievement get!";
protected override int Tile => ModContent.TileType<Tiles.DuneWyrmTrophy>(); protected override int Tile => ModContent.TileType<Tiles.DuneWyrmTrophy>();

View File

@ -7,7 +7,7 @@ namespace Decimation.Content.Items.Vanity.DuneWyrm
[AutoloadEquip(EquipType.Head)] [AutoloadEquip(EquipType.Head)]
internal class DuneWyrmMask : DecimationItem internal class DuneWyrmMask : DecimationItem
{ {
protected override string ItemName => "Ancient Dune Wyrm Mask"; protected override string ItemName => "The Great Dune Wyrm Mask";
protected override string ItemTooltip => "A bit dusty"; protected override string ItemTooltip => "A bit dusty";
protected override void Init() protected override void Init()

View File

@ -17,7 +17,7 @@ namespace Decimation.Content.Tiles
dustType = 7; dustType = 7;
disableSmartCursor = true; disableSmartCursor = true;
ModTranslation name = CreateMapEntryName(); ModTranslation name = CreateMapEntryName();
name.SetDefault("Dune Wyrm Trophy"); name.SetDefault("The Great Dune Wyrm Trophy");
AddMapEntry(new Color(120, 85, 60), name); AddMapEntry(new Color(120, 85, 60), name);
} }