forked from ParadiseSS13/Paradise
-
Notifications
You must be signed in to change notification settings - Fork 131
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
57 additions
and
4 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
//GYGAX | ||
|
||
/obj/mecha/combat/gygax/nt | ||
name = "Nanotrasen Special Gygax" | ||
icon = 'modular_ss220/mecha_skins/code/mecha.dmi' | ||
icon_state = "ntgygax" | ||
initial_icon = "ntgygax" | ||
max_integrity = 300 | ||
deflect_chance = 20 | ||
leg_overload_coeff = 100 | ||
max_temperature = 35000 | ||
desc = "Козырь Nanotrasen при решении проблем, легкий мех окрашенный в победоносные цвета НТ. Если вы видите этот мех, вероятно все проблемы уже решены." | ||
armor = list(melee = 40, bullet = 40, laser = 50, energy = 35, bomb = 20, rad =20, fire = 100, acid = 100) | ||
operation_req_access = list(ERT_TYPE_AMBER) | ||
max_equip = 5 | ||
wreckage = /obj/structure/mecha_wreckage/gygax/gygax_nt | ||
starting_voice = /obj/item/mecha_modkit/voice/nanotrasen | ||
destruction_sleep_duration = 2 SECONDS | ||
|
||
/obj/mecha/combat/gygax/nt/loaded_red/Initialize(mapload) | ||
. = ..() | ||
var/obj/item/mecha_parts/mecha_equipment/ME = new /obj/item/mecha_parts/mecha_equipment/weapon/energy/laser | ||
ME.attach(src) | ||
ME = new /obj/item/mecha_parts/mecha_equipment/weapon/energy/disabler | ||
ME.attach(src) | ||
ME = new /obj/item/mecha_parts/mecha_equipment/anticcw_armor_booster | ||
ME.attach(src) | ||
ME = new /obj/item/mecha_parts/mecha_equipment/antiproj_armor_booster | ||
ME.attach(src) | ||
ME = new /obj/item/mecha_parts/mecha_equipment/thrusters | ||
ME.attach(src) | ||
|
||
/obj/mecha/combat/gygax/nt/loaded_epsilon/Initialize(mapload) | ||
. = ..() | ||
var/obj/item/mecha_parts/mecha_equipment/ME = new /obj/item/mecha_parts/mecha_equipment/weapon/energy/xray/triple | ||
ME.attach(src) | ||
ME = new /obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/heavy | ||
ME.attach(src) | ||
ME = new /obj/item/mecha_parts/mecha_equipment/anticcw_armor_booster | ||
ME.attach(src) | ||
ME = new /obj/item/mecha_parts/mecha_equipment/tesla_energy_relay | ||
ME.attach(src) | ||
ME = new /obj/item/mecha_parts/mecha_equipment/thrusters | ||
ME.attach(src) | ||
|
||
/obj/mecha/combat/gygax/nt/add_cell() | ||
cell = new /obj/item/stock_parts/cell/high/slime(src) |
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