Skip to content

Commit

Permalink
Merge pull request #48 from honkpocket/golem-pr-again
Browse files Browse the repository at this point in the history
Dopplerstation Golem species (again)
  • Loading branch information
Ephemeralis authored Sep 16, 2024
2 parents fc27dfb + 172ebfe commit c227d95
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 1 deletion.
2 changes: 1 addition & 1 deletion config/game_options.txt
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ ROUNDSTART_RACES ethereal

## Races that are radical departures to what a species is, so while they technically can be roundstart - it's probably not wise
#ROUNDSTART_RACES android
#ROUNDSTART_RACES golem
ROUNDSTART_RACES golem

##-------------------------------------------------------------------------------------------

Expand Down
32 changes: 32 additions & 0 deletions modular_doppler/modular_species/species_types/golem/golem.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
//// Doppler Golems - Overwrites and continuiations of
// code/modules/mob/living/carbon/human/species_types/golems.dm
/datum/species/golem
inherent_traits = list(
TRAIT_GENELESS,
TRAIT_LAVA_IMMUNE,
TRAIT_NEVER_WOUNDED,
TRAIT_NOBLOOD,
TRAIT_NOBREATH,
// TRAIT_NODISMEMBER, removing this for now...
TRAIT_NOFIRE,
TRAIT_NO_AUGMENTS,
TRAIT_NO_DNA_COPY,
TRAIT_NO_PLASMA_TRANSFORM,
TRAIT_NO_UNDERWEAR,
TRAIT_PIERCEIMMUNE,
TRAIT_RADIMMUNE,
TRAIT_SNOWSTORM_IMMUNE,
TRAIT_UNHUSKABLE,
TRAIT_BOULDER_BREAKER,
//deviating from TG here <--
TRAIT_RESISTLOWPRESSURE,
TRAIT_RESISTCOLD,
TRAIT_RESISTHEAT,
)
no_equip_flags = ITEM_SLOT_MASK | ITEM_SLOT_OCLOTHING | ITEM_SLOT_FEET | ITEM_SLOT_ICLOTHING | ITEM_SLOT_SUITSTORE
changesource_flags = MIRROR_BADMIN | WABBAJACK | MIRROR_PRIDE | MIRROR_MAGIC | RACE_SWAP | ERT_SPAWN //golem ERT

/datum/species/golem/get_species_lore()
return list(
"@Lobster",
)
1 change: 1 addition & 0 deletions tgstation.dme
Original file line number Diff line number Diff line change
Expand Up @@ -6709,6 +6709,7 @@
#include "modular_doppler\modular_species\species_types\anthromorph\anthromorph_bodyparts.dm"
#include "modular_doppler\modular_species\species_types\aquatic\aquatic.dm"
#include "modular_doppler\modular_species\species_types\aquatic\aquatic_bodyparts.dm"
#include "modular_doppler\modular_species\species_types\golem\golem.dm"
#include "modular_doppler\modular_species\species_types\insectoid\insectoid.dm"
#include "modular_doppler\modular_species\species_types\insectoid\insectoid_bodyparts.dm"
#include "modular_doppler\modular_species\species_types\monkey\monkeys.dm"
Expand Down

0 comments on commit c227d95

Please sign in to comment.