From 49511f41097ec482783be612b3476e5a21668b07 Mon Sep 17 00:00:00 2001 From: "Emilia(SleepeeSoftware)" Date: Sat, 21 Feb 2026 11:22:03 +0100 Subject: [PATCH] working nice --- .gitignore | 2 + Content/Items/Accessories/Spacesuit.cs | 116 ++++++++++++++++++ Content/Items/Accessories/Spacesuit.png | Bin 0 -> 416 bytes Content/Items/Accessories/Spacesurf.cs | 50 ++++++++ Content/Items/Accessories/Spacesurf.png | Bin 0 -> 370 bytes Content/Items/Accessories/Spacesurf_Wings.png | Bin 0 -> 2058 bytes Content/Items/EmiliasWand.cs | 40 ++++++ Content/Items/EmiliasWand.png | Bin 0 -> 720 bytes Emiliasmod.cs | 15 +++ Emiliasmod.csproj | 16 +++ Emiliasmod.sln | 24 ++++ Localization/en-US_Mods.Emiliasmod.hjson | 18 +++ Properties/launchSettings.json | 16 +++ README.md | 93 ++++++++++++++ build.txt | 3 + description.txt | 1 + description_workshop.txt | 1 + icon.png | Bin 0 -> 504 bytes icon_small.png | Bin 0 -> 333 bytes 19 files changed, 395 insertions(+) create mode 100644 .gitignore create mode 100644 Content/Items/Accessories/Spacesuit.cs create mode 100644 Content/Items/Accessories/Spacesuit.png create mode 100644 Content/Items/Accessories/Spacesurf.cs create mode 100644 Content/Items/Accessories/Spacesurf.png create mode 100644 Content/Items/Accessories/Spacesurf_Wings.png create mode 100644 Content/Items/EmiliasWand.cs create mode 100644 Content/Items/EmiliasWand.png create mode 100644 Emiliasmod.cs create mode 100644 Emiliasmod.csproj create mode 100644 Emiliasmod.sln create mode 100644 Localization/en-US_Mods.Emiliasmod.hjson create mode 100644 Properties/launchSettings.json create mode 100644 README.md create mode 100644 build.txt create mode 100644 description.txt create mode 100644 description_workshop.txt create mode 100644 icon.png create mode 100644 icon_small.png diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..59fc676 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +bin/ +obj/ diff --git a/Content/Items/Accessories/Spacesuit.cs b/Content/Items/Accessories/Spacesuit.cs new file mode 100644 index 0000000..4db9aa8 --- /dev/null +++ b/Content/Items/Accessories/Spacesuit.cs @@ -0,0 +1,116 @@ +using Terraria; +using Terraria.ID; +using Terraria.ModLoader; + + +namespace Emiliasmod.Content.Items.Accessories +{ + public class Spacesuit : ModItem + { + + public static readonly int DefenseBonus = 8; + + //public override LocalizedText Tooltip => base.Tooltip.WithFormatArgs(); + + public override void SetDefaults() { + Item.width = 40; + Item.height = 40; + Item.accessory = true; + Item.rare = ItemRarityID.Red; + Item.value = Item.sellPrice(platinum: 1, gold: 35); + } + + public override void AddRecipes() { + Recipe recipe = CreateRecipe(); + recipe.AddTile(TileID.LunarMonolith); + recipe.AddIngredient(ItemID.TerrasparkBoots, 1); + recipe.AddIngredient(ItemID.CelestialShell, 1); + recipe.AddIngredient(ItemID.ArcticDivingGear, 1); + recipe.AddIngredient(ItemID.CharmofMyths, 1); + recipe.AddIngredient(ItemID.AnkhShield, 1); + recipe.AddCondition(Condition.DownedMoonLord); + recipe.Register(); + } + + public override void UpdateAccessory(Player player, bool hideVisual) { + player.rocketBoots = 4; + player.vanityRocketBoots = 4; + + player.waterWalk2 = true; + player.waterWalk = true; + player.iceSkate = true; + player.desertBoots = true; + player.fireWalk = true; + player.noFallDmg = true; + player.lavaRose = true; + player.lavaMax += 20 * 60; + + player.statDefense += DefenseBonus; + + player.arcticDivingGear = true; + //player.wereWolf = true; + player.accMerman = true; + + player.buffImmune[BuffID.BrokenArmor] = true; + player.buffImmune[BuffID.Bleeding] = true; + player.buffImmune[BuffID.Burning] = true; + player.buffImmune[BuffID.Chilled] = true; + player.buffImmune[BuffID.Confused] = true; + player.buffImmune[BuffID.Cursed] = true; + player.buffImmune[BuffID.Darkness] = true; + player.buffImmune[BuffID.Poisoned] = true; + player.buffImmune[BuffID.Silenced] = true; + player.buffImmune[BuffID.Slow] = true; + player.buffImmune[BuffID.Stoned] = true; + player.buffImmune[BuffID.Weak] = true; + player.noKnockback = true; + + player.lifeRegen += 4; + player.PotionDelayModifier -= 0.25f; + + player.GetDamage(DamageClass.Generic) += 10f; + player.GetAttackSpeed(DamageClass.Generic) += 10f; + player.GetCritChance(DamageClass.Generic) += 4f; + player.GetKnockback(DamageClass.Summon) += 0.5f; + player.blockRange += 1; + player.pickSpeed -= 0.15f; + + player.accRunSpeed = 6.75f; + player.runAcceleration = 2.0f; + player.moveSpeed += 0.25f; + + if (!hideVisual) { + player.CancelAllBootRunVisualEffects(); + } + //if (player.) + + player.GetModPlayer().SpacesuitStatBonusAccessory = true; + } + + } + + // Some movement effects are not suitable to be modified in ModItem.UpdateAccessory due to how the math is done. + // ModPlayer.PostUpdateRunSpeeds is suitable for these modifications. + public class SpacesuitStatBonusAccessoryPlayer : ModPlayer + { + public bool SpacesuitStatBonusAccessory = false; + + public override void ResetEffects() { + SpacesuitStatBonusAccessory = false; + } + + public override void PostUpdateRunSpeeds() { + //// We only want our additional changes to apply if ExampleStatBonusAccessory is equipped and not on a mount. + //if (Player.mount.Active || !SpacesuitStatBonusAccessory) { + // return; + //} + + // The following modifications are similar to Shadow Armor set bonus + //Player.canFloatInWater = true; + Player.runAcceleration *= 1.75f; + Player.maxRunSpeed *= 1.15f; + Player.accRunSpeed *= 1.15f; + Player.runSlowdown *= 1.75f; + } + } +} diff --git a/Content/Items/Accessories/Spacesuit.png b/Content/Items/Accessories/Spacesuit.png new file mode 100644 index 0000000000000000000000000000000000000000..256e1ca8fc1c1523723ef668918953c765f70e70 GIT binary patch literal 416 zcmV;R0bl-!P)lGLg_6c^aCVXB*OB=?;_>1nFqz+L?GEY+GO$L#Wiv@c_=LTwq(+X zluk)r6X)cii4pSr&p#uBZc_Kcj!b@!X2Lp=sJd!PlC7EtOr1@W&n>-~1+6^Du>Y@6 zruTj33`K5_K(f58v&7S_!Pf70BKsf_#4Km(@AFNB&nA2!x4DTVG%WV;_0e zBane4I%p2^!fc4`%RIi2mr6OwJ+cPe$gKCsjRfi*k(F%!bdSX=>1Xnxc#Op_Pp)i9 z{6hpe-7^UH1QWnX{`te=q@%_#o9dX-ZY0u)JgeC=^v#Q;5j6lUiiCFvh30br0000< KMNUMnLSTYfv%W?E literal 0 HcmV?d00001 diff --git a/Content/Items/Accessories/Spacesurf.cs b/Content/Items/Accessories/Spacesurf.cs new file mode 100644 index 0000000..52dac81 --- /dev/null +++ b/Content/Items/Accessories/Spacesurf.cs @@ -0,0 +1,50 @@ +using Terraria; +using Terraria.DataStructures; +using Terraria.ID; +using Terraria.ModLoader; + +namespace Emiliasmod.Content.Items.Accessories +{ + [AutoloadEquip(EquipType.Wings)] + public class Spacesurf : ModItem + { + public override void SetStaticDefaults() { + ArmorIDs.Wing.Sets.Stats[Item.wingSlot] = new WingStats(180, 14f, 4f, true); + } + + public override void SetDefaults() { + Item.width = 22; + Item.height = 20; + Item.value = Item.sellPrice(platinum: 1, gold: 35); + Item.rare = ItemRarityID.Red; + Item.accessory = true; + } + + public override void VerticalWingSpeeds(Player player, ref float ascentWhenFalling, ref float ascentWhenRising, + ref float maxCanAscendMultiplier, ref float maxAscentMultiplier, ref float constantAscend) { + ascentWhenFalling = 1.2f; // Falling glide speed + ascentWhenRising = 0.4f; // Rising speed + maxCanAscendMultiplier = 1f; + maxAscentMultiplier = 3f; + constantAscend = 0.135f; + } + + public override void UpdateAccessory(Player player, bool hideVisual) + { + player.wingTimeMax = 100000000; + player.moveSpeed += 0.1f; + player.jumpSpeedBoost += 1.8f; + player.maxFallSpeed += 0.10f; + player.maxRunSpeed *= 1.75f; + player.wingAccRunSpeed += 0.75f; + } + public override void AddRecipes() { + Recipe recipe = CreateRecipe(); + recipe.AddCondition(Condition.DownedMoonLord); + recipe.AddIngredient(ItemID.CelestialSigil, 1); + recipe.AddIngredient(ItemID.MoonLordLegs, 1); + recipe.AddIngredient(ItemID.LongRainbowTrailWings, 1); + recipe.Register(); + } + } +} diff --git a/Content/Items/Accessories/Spacesurf.png b/Content/Items/Accessories/Spacesurf.png new file mode 100644 index 0000000000000000000000000000000000000000..2641ee132a356090ee113ff1f1577e1e5dae63e6 GIT binary patch literal 370 zcmV-&0ge8NP)c~0G zB}(_oe{(u>?@aSM=YQ|f*oPGi8K?VvwOnYI_{Sva|I>txZV9c|O?LWj;z%@&2z5i} zal6?*d`}v&_AVJHU&)|+wceq8GFaes*{;43Q#VpkcSgfulxNFTl>7X?>vscQ9_waX zQQ}0-u-r&pde|R$oK5?d`=J8KR180ln@kO2O73*oc~p3c$3XqHYFJSNB^(X7wHQrjw}W z0p0Vk*FZ=spx#~mOrmoRE(H~v1(d@)rXEtC*lrJ5_8e{^(LTB^o%r{31_>g1w`S!K QVE_OC07*qoM6N<$f`8wmJ^%m! literal 0 HcmV?d00001 diff --git a/Content/Items/Accessories/Spacesurf_Wings.png b/Content/Items/Accessories/Spacesurf_Wings.png new file mode 100644 index 0000000000000000000000000000000000000000..2536fe346f873bcd68737aebb1260f7e1434927d GIT binary patch literal 2058 zcmY*ad0dj&8n&9$EZY}TC#&0a43m-uxMrrNre=zXfJ2~;rjFpggkj2UEZcOIbW}r{E``%Kb-wS;)U-~1{Vz%4q#e{u%>j}BY!y!*$<|N@NwcpMQ|I8^ z>5L%>apbDyCW3VauYS!jNIGQq#fjO)*hSGNLHaOheyM|5UfNnTq#x@MvqUck_Ocw& zRV!rGNkv5%&UzxXghNA2iDu(aqY-hNrP7dO;<)BvD4mw^Ncf^-z>eiOuU)V~#vf1m zoXonLNJ&b2B4PHsal@&B@%cNlQV-8#O9!DAR-SW0Fb*F=TKv7o17!mj8lSD<(VMji zghYM1Grwv6lVt{exnFR)z$UU`@$mfnwoSb@*}S(j0+B6Az=t&#DwrNOdZkoI7N3ufHm2LubrMA0Zm;9 ze;vw@vN1K`z-BDohCv5r6tX21k*NYr!5%j98UB-Dr0GHUXL5X%S>D>eNd5n4cZTnq zTp16+IryfqudJ(7%<&+I8%g_1HmL2})!@*n*{_bU>kg!Tk$2do`-((YeZqr#vU@vn zc<#ad_MK7IWC*PuhyD5; zzbki3R%)j5Kr(<_mASUGu-Ca`*m7XrX*FHdh3}o&kT}(l7O+cb-17t1jSsy>b;v;> zp(#Nhgr14D!mdG1g%`k3S~UCAY1UQNy;Y{mH#)RtZo6i?IOGpE&qgZbI|Cx$fq(8N$I_Ob6SyseK(g*0~1 zCNyPo&_&)x;p)GY!gGsSRfS)ZTwC&U`datkx(n6ux~kqbZ_=FnJ)UY{vm&DJ%HzZ? zT+R3$X5*UV6zSKab;>f}$##kT=7h4(nQ>HE$3(^2VTt?~F;K|udFdYdrIDFN&6hz3 zlc!rjj7hbI@-EK9gDAIbIIJ1K2jor?GUqo}~Y z#8>s(z+TuAcQkk65Y5l-f``kaz>L;^#|Xyu$eG)&nPhW@Jiu*!qoF$8>%Kkz%7}>4 zySJ>(Gp|g~7w3;(-7vfI)O{BwAa$ff&l%egI(Y3;#cSPNMRV#rnS$ z#$Px2!EI!6we8-zO6Ti@tp(-v>pHU$++h;h68IJynVPZs=~zq}W;Ni0c<#H-zE|ff z)luV|6xF_;-Ximhy&v@7Z9WTvqYXCIH$Y?4DOM zeTWc3=hz;TW0VwcPSxn0k(7hJmG}NsbZDeYR%572+GONU$Z=o{7I=zM~<(FjoIuzhD9?f5>q+Vs*rdy@a_qJmTj`-U-KRcy@f z#j#`2ufwIm`LyDU<2_bv9;6{QVIM$x<@5g`RsSGrmA)rBUa}lLQbpAmX`tI zKM1=-legeO_K{b0^n|2sCq6`Q!q1FfIw8xCBd4Tn6MVlQo^EgeSV@kAM!b<{#r~*$ zZrxrBMSZNudB;6WN%XmywGoJNpZ6j(az+l43Kxd>>g;Z@a!gxb2w%oO$7(@{v88SC znXtoiv>aQ*0i!AF`E>Wm%TC)PJO7u_dOQ6p31)nIdFt&~h817008h@z@SpzxP_q^O literal 0 HcmV?d00001 diff --git a/Content/Items/EmiliasWand.cs b/Content/Items/EmiliasWand.cs new file mode 100644 index 0000000..efcce08 --- /dev/null +++ b/Content/Items/EmiliasWand.cs @@ -0,0 +1,40 @@ +using Terraria; +using Terraria.ID; +using Terraria.ModLoader; + + +namespace Emiliasmod.Content.Items +{ + // This is a basic item template. + // Please see tModLoader's ExampleMod for every other example: + // https://github.com/tModLoader/tModLoader/tree/stable/ExampleMod + public class EmiliasWand : ModItem + { + // The Display Name and Tooltip of this item can be edited in the 'Localization/en-US_Mods.Emiliasmod.hjson' file. + public override void SetDefaults() + { + Item.damage = 300; + Item.DamageType = DamageClass.Melee; + Item.pick = 300; + Item.width = 40; + Item.height = 200; + Item.useTime = 10; + Item.useAnimation = 10; + Item.useStyle = ItemUseStyleID.Shoot; + Item.knockBack = 6; + Item.value = Item.buyPrice(platinum: 1); + Item.rare = ItemRarityID.Red; + //Item.UseSound = SoundID.Item1; + Item.autoReuse = true; + Item.useTurn = true; + } + + public override void AddRecipes() + { + Recipe recipe = CreateRecipe(); + recipe.AddIngredient(ItemID.DirtBlock, 10); + recipe.AddTile(TileID.WorkBenches); + recipe.Register(); + } + } +} diff --git a/Content/Items/EmiliasWand.png b/Content/Items/EmiliasWand.png new file mode 100644 index 0000000000000000000000000000000000000000..b54922e201fda026ad0836235008ead16aebac92 GIT binary patch literal 720 zcmV;>0x$iEP)Px%ib+I4R9J=Om_29{VH}5_6L;lIOKUTPei54(irT@FQOOjMqT=KrMJPx+h=YTQ zU0igq6bcSH38Ermrh;RsL;WaeT0^ZRg~W)_^8;+hI2?b%`zEJpa>hG-ra<2N;NkcG zNDTfG`(sG}g58|}PaOl`>iA6ng58}4Kz_XlfMxl_plcbF332dn6o5jmpqRUH_nv(&YEKX`7a8m~ z0G1b50a!|>l>7es2AyWBOo*k7ZDzaX1pgZpLryrElRl?cYrWXSl{U;dKG#OWhI^`5scHedj}Nw2u_g5Ec1eJ%lDwwne(VZ*LwF*G_du3RvY zv@<8>biP|Zfad$3;C+KzTbpHo!p0_0sY<;X^=j3#s_%Pl;dz6GX~vYy&E9_ofZ1ke z(kfXs|2vjymCOl^ZY@su$6&4R>bZei)#`-j4gLfq@C%kY4i1 + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Emiliasmod.sln b/Emiliasmod.sln new file mode 100644 index 0000000..a2d0602 --- /dev/null +++ b/Emiliasmod.sln @@ -0,0 +1,24 @@ +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.5.2.0 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Emiliasmod", "Emiliasmod.csproj", "{741ADC3D-2994-FB59-1BEE-0908CF33834F}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {741ADC3D-2994-FB59-1BEE-0908CF33834F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {741ADC3D-2994-FB59-1BEE-0908CF33834F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {741ADC3D-2994-FB59-1BEE-0908CF33834F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {741ADC3D-2994-FB59-1BEE-0908CF33834F}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {62AAAEF0-7CE9-4FA8-AD95-81047C2FCF75} + EndGlobalSection +EndGlobal diff --git a/Localization/en-US_Mods.Emiliasmod.hjson b/Localization/en-US_Mods.Emiliasmod.hjson new file mode 100644 index 0000000..0404156 --- /dev/null +++ b/Localization/en-US_Mods.Emiliasmod.hjson @@ -0,0 +1,18 @@ +# This file will automatically update with entries for new content after a build and reload. + +Items: { + EmiliasWand: { + DisplayName: Emilias Wand + Tooltip: Is it a Drill ? is it a Sword ? It's an Hitachi Magic Wand !! (never used ?) + } + + Spacesuit: { + DisplayName: Spacesuit + Tooltip: Are you ready for Space ? + } + + Spacesurf: { + DisplayName: Spacesurf + Tooltip: "" + } +} diff --git a/Properties/launchSettings.json b/Properties/launchSettings.json new file mode 100644 index 0000000..494048a --- /dev/null +++ b/Properties/launchSettings.json @@ -0,0 +1,16 @@ +{ + "profiles": { + "Terraria": { + "commandName": "Executable", + "executablePath": "$(DotNetName)", + "commandLineArgs": "$(tMLPath)", + "workingDirectory": "$(tMLSteamPath)" + }, + "TerrariaServer": { + "commandName": "Executable", + "executablePath": "$(DotNetName)", + "commandLineArgs": "$(tMLServerPath)", + "workingDirectory": "$(tMLSteamPath)" + } + } +} \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..d5eefb0 --- /dev/null +++ b/README.md @@ -0,0 +1,93 @@ +# Emilia's Mod + +___ + +### 1. Environment: Space & Subworlds + + - Subworld Library: Integrate this to handle the "Space" dimension without hitting the 163,840-tile height limit of the main world. + + - Physics Overrides: Create a ModSceneEffect or Subworld hook to set gravity = 0f and windSpeed = 0f. + + - Oxygen Logic: A ModPlayer timer that drains health if HasSpaceSuit == false while in the Space subworld. + +___ + +### 2. Ship Construction & The Launch Pad + + - The Anchor (Launch Pad): A ModTile that acts as the origin point (0,0) for your ship scan. + + - Integrity Scan: A method to check a 50×50 (or larger) area for "Hull" tiles (Luminite bricks, etc.) and at least one "Engine" tile. + + - Serialization: A CaptureShip() function that saves the TileType, WallType, and TileEntity data of the ship into a TagCompound. + + - Launch Animation: * Spawn a large Projectile with the ship’s sprite. + - Set ship tiles in the world to type = 0 (Air). + - Apply upward velocity to the projectile and trigger the subworld transfer once it hits the "top" of the screen. + +___ + +### 3. Pilot Mode (Top-Down Combat) + + - The Controller: A ModTile (Pilot Seat) that toggles IsPiloting = true. + + - Physics Hack: * In PreUpdateMovement, set Player.gravity = 0. + + - Apply Player.velocity *= 0.95f for linear drag. + + - Map WASD to 2D vector movement (Top-down style). + + - Visual Masking: Use PlayerDrawLayer to hide the player sprite and draw the Ship sprite rotated toward Main.MouseWorld. + + - Ship Systems: Implement a "Shield" variable in ModPlayer that recharges over time and absorbs damage before the player takes hits. + +### 4. Automation & Logistics + + - The Registry: A List or List in a ModSystem to track active machines (extractors, assemblers). + + - Heartbeat Loop: Run automation logic in PostUpdateWorld every 10–20 ticks to save CPU. + + - Push/Pull Logic: Instead of complex pipes, use a "Transferer" tile that checks for an IItemStorage (Chest or TileEntity) in the 4 cardinal directions and moves 1 item per tick. + + - Resource Nodes: Create "Asteroid" tiles in the subworld that can only be harvested by an automated LaserDrill TileEntity. + +### 5. Progression Flow (Post-Moon Lord) + + - Crafting: Combine Luminite and Moon Lord drops to create the Launch Pad and Ship Engines. + + - Assembly: Build the ship on the pad in the Main World. + + - Exploration: Launch to the Orbit Subworld to mine "Exotic Matter" from asteroids. + + - Automation: Use Exotic Matter to build the Star-Chart (Remote Teleporter) and auto-farms. + + - Expansion: Use the ship's Top-Down mode to fight "Star-Beast" bosses in Deep Space. + +### 6. Other Point + - Navigator (move in after moonlord) + - Physicist (move in after moonlord) + - Martian (move in after martian invasion, but access shop after moonlord) * hint about space travel + - Martian spaceship can drop ship part after moonlord + - Cleanse Reforge + - spacesuit (Terrarian upgrade + Mystical Conch + Diving gear) + - Alien Surf (Sigil + Celestial Starboard) + - Space Combat (Top Down Ship Control). + + + +Items: { + EmiliasWand: { + DisplayName: Emilias Wand + Tooltip: + ''' + Is it a Drill ? is it a Sword ? It's an Hitachi Magic Wand !! (never used ?) + ''' + } + Spacesuit: { + DisplayName: Spacesuit + Tooltip: + Are you ready for Space ? + ''' + Beam me up !!!! + ''' + } +} diff --git a/build.txt b/build.txt new file mode 100644 index 0000000..102de6a --- /dev/null +++ b/build.txt @@ -0,0 +1,3 @@ +displayName = Emilia's Mod +author = EmiliaUwU +version = 0.1 \ No newline at end of file diff --git a/description.txt b/description.txt new file mode 100644 index 0000000..397c523 --- /dev/null +++ b/description.txt @@ -0,0 +1 @@ +Have you ever dreamed to go into space, fight space battle and Vanquish Celestial Horror Beyond our Imagination !! diff --git a/description_workshop.txt b/description_workshop.txt new file mode 100644 index 0000000..89acee5 --- /dev/null +++ b/description_workshop.txt @@ -0,0 +1 @@ +This description will show up on the steam page, check out https://steamcommunity.com/comment/Guide/formattinghelp. \ No newline at end of file diff --git a/icon.png b/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..9e0cf81e52f4133dbe85453dd9a37993af17b5be GIT binary patch literal 504 zcmeAS@N?(olHy`uVBq!ia0vp^0U*r53?z4+XPOVBbOU@sT!FNbf{DF-NtsjE_3B;! z|NjSy0D+K@p01v+t9x8zR#D@WS?dlQ`1+YJESG!@x4dC7*`C93=UXkhhvvt!hjSLlJ~RwmnP~Bh_e#*cGOJz5H)U2RZk=*d{>S{o z|7E^K_FWXNcxrjXh&wV*Hfp0Ti%!ljhM&t`NT+&77>M@wN(xASbQfH=B6&8`PK|k& o(pT;d?|57xzrgJ7^Ax@sCjQeEzP*#>W`d&2)78&qol`;+07t#pIRF3v literal 0 HcmV?d00001 diff --git a/icon_small.png b/icon_small.png new file mode 100644 index 0000000000000000000000000000000000000000..3f173e4a9859fd22feb3c11d0e831440393c6ed4 GIT binary patch literal 333 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX1|+Qw)-3{3jKx9jP7LeL$-D%z**#qxLp(Z@ z6C^Sl1djy-8T{5qrg&wHC+Dx zYFn=>l*lJBW(HJ=9bWLkuxd`(JKfX-AkZj(mjI@nZM|@_ZAb7P{NB_ z?O7iW{FV?u@U%F_PF0L2PW~{%uJaduh28IxV;&hy zC`=I#``Gy1a3h0l=w$A;zW(cXqFWCg51lQ@)O`Nk=CDP2y)2?`B-QnNUpZHVU zmhU3tnz~j-r&ooIKz%$1f;4xXFJO#Wd+|6w|AVXM33h2ml%}=0_RLC1h@Pp;&%hAV X@BOv5nfoa)d>A}k{an^LB{Ts5PoRi* literal 0 HcmV?d00001