diff --git a/Changelogs/1.3.2/v1.3.2.7.txt b/Changelogs/1.3.2/v1.3.2.7.txt index c46aa50e..e08e890d 100644 --- a/Changelogs/1.3.2/v1.3.2.7.txt +++ b/Changelogs/1.3.2/v1.3.2.7.txt @@ -1,14 +1,20 @@ Changelog for v1.3.2.7: -Mr Danny is back: +IMPORTANT! Uncle Danny: `@everyone Alright, so as Jofairden and I have been on good terms already for a good while already, he just proposed to open up the wiki again. The wiki however, is quite a bad source of information as of now, and there are a lot of bad pages. He asked me if I could make this post to ask if anyone right now would want to help out with the wiki, both with cleaning it up and adding new pages. If you want to help out, ping me and I will give you the wiki editor role, giving you access to the #wiki channel where you can ask questions if needed.` -This means the wiki is back in business and we are looking for editors. Go to the discord for more information. +- This means the wiki is back in business and we are looking for editors. Go to the discord for more information. Major: - Fixed Lunar Roots bad worldgen code - Removed a bad drop - Fixed people getting stuck on: "Recipe Browser: Building Loot Cache - Tremor" +Goblin Army: +- Everyone reports it's bugged, but I cleared the goblin army in 3 different scenarios without any issues. Even Yoraiz0r says the code is fine.. If you have this issue, please tell me your entire modlist and MP or non MP +- Buffed Goblin Assasin life from 90 to 200 +- Buffed Goblin Standard Bearer demounted life to 175 from 75, and mounted to 100 from 50 +- Buffed Goblin Bomber life to 90 from 45 + NPCs: - I found in patch 1.3.1.13: "Desert Princess now drops only 1 of 3 Desert Explorer set items", however, this wasn't the case. So now Desert Queen can drop one piece at a time, and they all have 50% drop chance. I added smart code to ensure you don't always end up getting the same item. - Desert Princess now spawns in the Desert Biome after Plantera is defeated @@ -41,3 +47,6 @@ Wiki: - Knight shop updated. - Archer shop updated. - Pre-Hardmode Enemies page updated. + +Note: +- Massive resprites comin, BOII diff --git a/NPCs/GoblinAssassin.cs b/NPCs/GoblinAssassin.cs index 0591ea08..40af3932 100644 --- a/NPCs/GoblinAssassin.cs +++ b/NPCs/GoblinAssassin.cs @@ -22,7 +22,7 @@ public override void SetStaticDefaults() public override void SetDefaults() { - npc.lifeMax = 90; + npc.lifeMax = 200; npc.damage = 21; npc.defense = 10; npc.knockBackResist = 0.4f; diff --git a/NPCs/GoblinBomber.cs b/NPCs/GoblinBomber.cs index 428968e9..7ef8808d 100644 --- a/NPCs/GoblinBomber.cs +++ b/NPCs/GoblinBomber.cs @@ -18,7 +18,7 @@ public override void SetStaticDefaults() public override void SetDefaults() { - npc.lifeMax = 45; + npc.lifeMax = 90; npc.damage = 50; npc.defense = 0; npc.knockBackResist = 0.3f; diff --git a/NPCs/GoblinStandardBearer.cs b/NPCs/GoblinStandardBearer.cs index 386a1dfd..6355220c 100644 --- a/NPCs/GoblinStandardBearer.cs +++ b/NPCs/GoblinStandardBearer.cs @@ -18,7 +18,7 @@ public override void SetStaticDefaults() public override void SetDefaults() { - npc.lifeMax = 75; + npc.lifeMax = 175; npc.damage = 34; npc.defense = 14; npc.knockBackResist = 0.1f; diff --git a/NPCs/GoblinStandardBearer_Balloon.cs b/NPCs/GoblinStandardBearer_Balloon.cs index 008d3804..d8459cd0 100644 --- a/NPCs/GoblinStandardBearer_Balloon.cs +++ b/NPCs/GoblinStandardBearer_Balloon.cs @@ -20,7 +20,7 @@ public override void SetStaticDefaults() public override void SetDefaults() { - npc.lifeMax = 50; + npc.lifeMax = 100; npc.damage = 34; npc.defense = 14; npc.knockBackResist = 0.1f;