Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Buff standard tad cockpit/window health #17068

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion code/modules/shuttle/marine_dropship.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1006,6 +1006,7 @@

/obj/structure/dropship_piece/glassone/tadpole
icon_state = "shuttle_glass1"
max_integrity = 600
resistance_flags = XENO_DAMAGEABLE | DROPSHIP_IMMUNE
opacity = FALSE
allow_pass_flags = PASS_GLASS
Expand All @@ -1017,20 +1018,22 @@
/obj/structure/dropship_piece/glasstwo/tadpole
icon = 'icons/turf/dropship2.dmi'
icon_state = "shuttle_glass2"
max_integrity = 600
resistance_flags = XENO_DAMAGEABLE | DROPSHIP_IMMUNE
opacity = FALSE
allow_pass_flags = PASS_GLASS

/obj/structure/dropship_piece/singlewindow/tadpole
icon = 'icons/turf/dropship2.dmi'
icon_state = "shuttle_single_window"
max_integrity = 600
allow_pass_flags = PASS_GLASS
resistance_flags = XENO_DAMAGEABLE | DROPSHIP_IMMUNE
opacity = FALSE

/obj/structure/dropship_piece/tadpole/cockpit
desc = "The nose part of the tadpole, able to be destroyed."
max_integrity = 500
max_integrity = 600
resistance_flags = XENO_DAMAGEABLE | DROPSHIP_IMMUNE
opacity = FALSE
layer = BELOW_OBJ_LAYER
Expand Down
Loading