Skip to content

Commit

Permalink
Wasteplanet wall girders are less tough (#3894)
Browse files Browse the repository at this point in the history
🆑
balance: Girders on wasteplanet walls are no longer more durable than
the walls.
/🆑

<!-- Both 🆑's are required for the changelog to work! You can put
your name to the right of the first 🆑 if you want to overwrite your
GitHub username as author ingame. -->
<!-- You can use multiple of the same prefix (they're only used for the
icon ingame) and delete the unneeded ones. Despite some of the tags,
changelogs should generally represent how a player might be affected by
the changes rather than a summary of the PR's contents. -->
  • Loading branch information
Erikafox authored Dec 12, 2024
1 parent 55e99aa commit 3b53663
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions code/game/objects/effects/spawners/random/waste_planet.dm
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,9 @@

/obj/effect/spawner/random/waste/girder
loot = list(
/obj/structure/girder/wasteworld,
/obj/structure/girder/wasteworld,
/obj/structure/girder/wasteworld,
/obj/structure/girder,
/obj/structure/girder/displaced,
/obj/structure/girder/reinforced
Expand Down
9 changes: 9 additions & 0 deletions code/game/turfs/open/floor/plating/wasteplanet.dm
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,7 @@
max_integrity = 800
integrity = 800
baseturfs = /turf/open/floor/plating/wasteplanet
girder_type = /obj/structure/girder/wasteworld

/turf/closed/wall/r_wall/wasteplanet/Initialize(mapload, inherited_virtual_z)
. = ..()
Expand All @@ -280,6 +281,7 @@
max_integrity = 600
integrity = 600
baseturfs = /turf/open/floor/plating/wasteplanet/rust
girder_type = /obj/structure/girder/wasteworld

/turf/closed/wall/r_wall/rust/wasteplanet/Initialize(mapload, inherited_virtual_z)
. = ..()
Expand All @@ -290,6 +292,7 @@
max_integrity = 200
integrity = 200
baseturfs = /turf/open/floor/plating/wasteplanet
girder_type = /obj/structure/girder/wasteworld

/turf/closed/wall/wasteplanet/Initialize(mapload, inherited_virtual_z)
. = ..()
Expand All @@ -300,6 +303,7 @@
max_integrity = 100
integrity = 100
baseturfs = /turf/open/floor/plating/wasteplanet/rust
girder_type = /obj/structure/girder/wasteworld

/turf/closed/wall/rust/wasteplanet/Initialize(mapload, inherited_virtual_z)
. = ..()
Expand All @@ -325,3 +329,8 @@
. = ..()
if(prob(25))
alter_integrity(-rand(0,500))

//girlder

/obj/structure/girder/wasteworld
max_integrity = 40

0 comments on commit 3b53663

Please sign in to comment.