forked from tModLoader/tModLoader
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AetherBreaker and Sailing_Squid vanity sets, quick fix for wizard hat…
… cutoff
- Loading branch information
Showing
25 changed files
with
145 additions
and
0 deletions.
There are no files selected for viewing
73 changes: 73 additions & 0 deletions
73
patches/tModLoader/Terraria.ModLoader.Default.Patreon/AetherBreaker.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
using Microsoft.Xna.Framework; | ||
using Microsoft.Xna.Framework.Graphics; | ||
using System; | ||
using Terraria.DataStructures; | ||
|
||
namespace Terraria.ModLoader.Default.Patreon | ||
{ | ||
internal class AetherBreaker_Head : PatreonItem | ||
{ | ||
public override string SetName => "AetherBreaker"; | ||
public override EquipType ItemEquipType => EquipType.Head; | ||
|
||
public override void SetDefaults() { | ||
base.SetDefaults(); | ||
item.width = 34; | ||
item.height = 22; | ||
} | ||
} | ||
|
||
internal class WitchDaggah_Head : PatreonItem | ||
{ | ||
public override string SetName => "WitchDaggah"; | ||
public override EquipType ItemEquipType => EquipType.Head; | ||
|
||
public override void SetDefaults() { | ||
base.SetDefaults(); | ||
item.width = 34; | ||
item.height = 22; | ||
} | ||
} | ||
|
||
internal class AetherBreaker_Body : PatreonItem | ||
{ | ||
public override string SetName => "AetherBreaker"; | ||
public override EquipType ItemEquipType => EquipType.Body; | ||
|
||
public override void SetDefaults() { | ||
base.SetDefaults(); | ||
item.width = 42; | ||
item.height = 24; | ||
} | ||
} | ||
|
||
internal class AetherBreaker_Legs : PatreonItem | ||
{ | ||
public override string SetName => "AetherBreaker"; | ||
public override EquipType ItemEquipType => EquipType.Legs; | ||
|
||
public override void SetDefaults() { | ||
base.SetDefaults(); | ||
item.width = 22; | ||
item.height = 18; | ||
} | ||
} | ||
|
||
internal class AetherBreaker_Wings : PatreonItem | ||
{ | ||
public override string SetName => "AetherBreaker"; | ||
public override EquipType ItemEquipType => EquipType.Wings; | ||
|
||
public override void SetDefaults() { | ||
base.SetDefaults(); | ||
item.vanity = false; | ||
item.width = 24; | ||
item.height = 8; | ||
item.accessory = true; | ||
} | ||
|
||
public override void UpdateAccessory(Player player, bool hideVisual) { | ||
player.wingTimeMax = 150; | ||
} | ||
} | ||
} |
Binary file added
BIN
+2.55 KB
patches/tModLoader/Terraria.ModLoader.Default.Patreon/AetherBreaker_Body.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.28 KB
patches/tModLoader/Terraria.ModLoader.Default.Patreon/AetherBreaker_Body_Arms.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+6.54 KB
patches/tModLoader/Terraria.ModLoader.Default.Patreon/AetherBreaker_Body_Body.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.43 KB
patches/tModLoader/Terraria.ModLoader.Default.Patreon/AetherBreaker_Head.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.71 KB
patches/tModLoader/Terraria.ModLoader.Default.Patreon/AetherBreaker_Head_Head.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.57 KB
patches/tModLoader/Terraria.ModLoader.Default.Patreon/AetherBreaker_Legs.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+5.68 KB
patches/tModLoader/Terraria.ModLoader.Default.Patreon/AetherBreaker_Legs_Legs.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.1 KB
patches/tModLoader/Terraria.ModLoader.Default.Patreon/AetherBreaker_Wings.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.68 KB
...hes/tModLoader/Terraria.ModLoader.Default.Patreon/AetherBreaker_Wings_Wings.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+6.54 KB
patches/tModLoader/Terraria.ModLoader.Default.Patreon/Armor_Body_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
61 changes: 61 additions & 0 deletions
61
patches/tModLoader/Terraria.ModLoader.Default.Patreon/Sailing_Squid.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
using Microsoft.Xna.Framework; | ||
using Microsoft.Xna.Framework.Graphics; | ||
using System; | ||
using Terraria.DataStructures; | ||
|
||
namespace Terraria.ModLoader.Default.Patreon | ||
{ | ||
internal class Sailing_Squid_Head : PatreonItem | ||
{ | ||
public override string SetName => "Sailing_Squid"; | ||
public override EquipType ItemEquipType => EquipType.Head; | ||
|
||
public override void SetDefaults() { | ||
base.SetDefaults(); | ||
item.width = 34; | ||
item.height = 22; | ||
} | ||
} | ||
|
||
internal class Sailing_Squid_Body : PatreonItem | ||
{ | ||
public override string SetName => "Sailing_Squid"; | ||
public override EquipType ItemEquipType => EquipType.Body; | ||
|
||
public override void SetDefaults() { | ||
base.SetDefaults(); | ||
item.width = 42; | ||
item.height = 24; | ||
} | ||
} | ||
|
||
internal class Sailing_Squid_Legs : PatreonItem | ||
{ | ||
public override string SetName => "Sailing_Squid"; | ||
public override EquipType ItemEquipType => EquipType.Legs; | ||
|
||
public override void SetDefaults() { | ||
base.SetDefaults(); | ||
item.width = 22; | ||
item.height = 18; | ||
} | ||
} | ||
|
||
internal class Sailing_Squid_Wings : PatreonItem | ||
{ | ||
public override string SetName => "Sailing_Squid"; | ||
public override EquipType ItemEquipType => EquipType.Wings; | ||
|
||
public override void SetDefaults() { | ||
base.SetDefaults(); | ||
item.vanity = false; | ||
item.width = 24; | ||
item.height = 8; | ||
item.accessory = true; | ||
} | ||
|
||
public override void UpdateAccessory(Player player, bool hideVisual) { | ||
player.wingTimeMax = 150; | ||
} | ||
} | ||
} |
Binary file added
BIN
+2.19 KB
patches/tModLoader/Terraria.ModLoader.Default.Patreon/Sailing_Squid_Body.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+6.89 KB
patches/tModLoader/Terraria.ModLoader.Default.Patreon/Sailing_Squid_Body_Arms.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+7.06 KB
patches/tModLoader/Terraria.ModLoader.Default.Patreon/Sailing_Squid_Body_Body.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.09 KB
patches/tModLoader/Terraria.ModLoader.Default.Patreon/Sailing_Squid_Head.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.6 KB
patches/tModLoader/Terraria.ModLoader.Default.Patreon/Sailing_Squid_Head_Head.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.02 KB
patches/tModLoader/Terraria.ModLoader.Default.Patreon/Sailing_Squid_Legs.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+5.76 KB
patches/tModLoader/Terraria.ModLoader.Default.Patreon/Sailing_Squid_Legs_Legs.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.93 KB
patches/tModLoader/Terraria.ModLoader.Default.Patreon/Sailing_Squid_Wings.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.43 KB
...hes/tModLoader/Terraria.ModLoader.Default.Patreon/Sailing_Squid_Wings_Wings.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.46 KB
patches/tModLoader/Terraria.ModLoader.Default.Patreon/WitchDaggah_Head.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.76 KB
patches/tModLoader/Terraria.ModLoader.Default.Patreon/WitchDaggah_Head_Head.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters