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

Adds Pirate Gantry Vessel #1446

Open
wants to merge 5 commits into
base: baymerge-testing
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,11 @@
firedelay = 44 SECONDS
salvo = 2

/datum/shipcomponents/weapons/smallmissilepod // For small/tiny ships, 1 missle a shot.
name = "small missile pod"
projectile_type = /obj/effect/meteor/shipmissile/smallmissile
firedelay = 16 SECONDS

//torpedo

/datum/shipcomponents/weapons/smalltorpedo
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,11 @@
health = 250
turns_per_move = 8

/datum/shipcomponents/engines/pod // nimble but weak
name = "escape pod engines"
evasion_chance = 20
health = 60

//point defence

/datum/shipcomponents/point_defence
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,3 +142,28 @@
)

..()

/mob/living/simple_animal/hostile/overmapship/pirate/gantry // Makeshift Pirate Vessel, OSHA not included.
// shipdatum = /datum/ships/pirategantry
shields = 600
health = 800
maxHealth = 800
name = "tiny pirate gantry" // Keep in size conventions, tiny sounds weaker than small.
ship_category = "tiny gantry vessel"
boardingmap = "maps/shipmaps/ship_pirate_scrapper.dmm"
can_board = TRUE
potential_weapons = list(/datum/shipcomponents/weapons/lightlaser/dual, /datum/shipcomponents/weapons/smallmissilepod)

/mob/living/simple_animal/hostile/overmapship/pirate/gantry/Initialize()
components = list(
new /datum/shipcomponents/shield/light,
new /datum/shipcomponents/engines/pod,
new /datum/shipcomponents/weapons/smallmissilepod,
new /datum/shipcomponents/weapons/lightlaser/dual,
new /datum/shipcomponents/teleporter/pirate/small
)

add_weapons()
add_weapons()

.=..()
3 changes: 2 additions & 1 deletion config/shipTemplates.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ maps/shipmaps/ship_light_freighter.dmm
maps/shipmaps/ship_pirate_small1.dmm
maps/shipmaps/ship_rebel_small1.dmm
maps/shipmaps/ship_lactera_small.dmm
maps/shipmaps/ship_lactera_large.dmm
maps/shipmaps/ship_lactera_large.dmm
maps/shipmaps/ship_pirate_scrapper.dmm