-
Notifications
You must be signed in to change notification settings - Fork 276
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* save * saving * ihatespritesihatesprites * whhhy * bodypartsvisiblethankuKmla * motheyes * almstodone * testscreenshot I think temp removal of temp * armkginsfixlater * screenshot * monkestation edit * more monkeaddition * mothmen * fixed testscreenshot * heatmod * temp screenshot * addition * placeholdermarkings * real modular * modulize * tundrastuff * revert * test * tolazytowritemoreofthese * I DID IT * cryimg * really pretty modulizartion * more modulizaration * modulizar? * test * test * modularrr * Update monkestation/code/modules/surgery/organs/internal/eyes.dm Co-authored-by: Lucy <[email protected]> * Update monkestation/code/modules/mob/living/carbon/human/species_type/Tundramoths/tundramoths.dm Co-authored-by: Lucy <[email protected]> * Update code/modules/unit_tests/screenshot_humanoids.dm Co-authored-by: Lucy <[email protected]> * stuff * fix * sdfsafs * test screenshot --------- Co-authored-by: Lucy <[email protected]>
- Loading branch information
Showing
17 changed files
with
128 additions
and
2 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
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
Binary file added
BIN
+1.51 KB
...ules/unit_tests/screenshots/screenshot_humanoids__datum_species_moth_tundra.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
34 changes: 34 additions & 0 deletions
34
...station/code/modules/mob/living/carbon/human/species_type/tundra_moths/mothaccessories.dm
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,34 @@ | ||
// These can be accessed by all types of moths, just modular | ||
|
||
// Tundra | ||
/datum/sprite_accessory/moth_wings/tundra | ||
name = "Tundra" | ||
icon = 'monkestation/icons/mob/species/tundramoths/moth_wings.dmi' | ||
icon_state = "tundra" | ||
|
||
/datum/sprite_accessory/moth_antennae/tundra | ||
name = "Tundra" | ||
icon = 'monkestation/icons/mob/species/tundramoths/moth_antennae.dmi' | ||
icon_state = "tundra" | ||
|
||
/datum/sprite_accessory/moth_markings/tundra | ||
name = "Tundra" | ||
icon = 'monkestation/icons/mob/species/tundramoths/moth_markings.dmi' | ||
icon_state = "tundra" | ||
|
||
// Bluespace | ||
/datum/sprite_accessory/moth_wings/bluespace | ||
icon = 'monkestation/icons/mob/species/tundramoths/moth_wings.dmi' | ||
name = "Bluespace" | ||
icon_state = "bluespace" | ||
|
||
/datum/sprite_accessory/moth_antennae/bluespace | ||
name = "Bluespace" | ||
icon = 'monkestation/icons/mob/species/tundramoths/moth_antennae.dmi' | ||
icon_state = "bluespace" | ||
|
||
// Twilight | ||
/datum/sprite_accessory/moth_antennae/twilight | ||
name = "Twilight" | ||
icon = 'monkestation/icons/mob/species/tundramoths/moth_antennae.dmi' | ||
icon_state = "twilight" |
73 changes: 73 additions & 0 deletions
73
monkestation/code/modules/mob/living/carbon/human/species_type/tundra_moths/tundramoths.dm
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,73 @@ | ||
/datum/species/moth/tundra | ||
name = "\improper Tundra Moth" | ||
plural_form = "Tundra Moths" | ||
id = SPECIES_TUNDRA | ||
mutanteyes = /obj/item/organ/internal/eyes/moth/tundra | ||
external_organs = list(/obj/item/organ/external/wings/moth = "Tundra", /obj/item/organ/external/antennae = "Tundra") | ||
|
||
bodypart_overrides = list( | ||
BODY_ZONE_HEAD = /obj/item/bodypart/head/tundramoth, | ||
BODY_ZONE_CHEST = /obj/item/bodypart/chest/tundramoth, | ||
BODY_ZONE_L_ARM = /obj/item/bodypart/arm/left/tundramoth, | ||
BODY_ZONE_R_ARM = /obj/item/bodypart/arm/right/tundramoth, | ||
BODY_ZONE_L_LEG = /obj/item/bodypart/leg/left/tundramoth, | ||
BODY_ZONE_R_LEG = /obj/item/bodypart/leg/right/tundramoth, | ||
) | ||
|
||
coldmod = 0.67 | ||
heatmod = 1.5 | ||
|
||
|
||
//Body parts | ||
/obj/item/bodypart/head/tundramoth | ||
icon = 'monkestation/icons/mob/species/tundramoths/bodyparts.dmi' | ||
icon_state = "tundra_moth_head" | ||
icon_static = 'monkestation/icons/mob/species/tundramoths/bodyparts.dmi' | ||
limb_id = SPECIES_TUNDRA | ||
is_dimorphic = FALSE | ||
should_draw_greyscale = FALSE | ||
head_flags = /obj/item/bodypart/head/moth::head_flags | ||
|
||
/obj/item/bodypart/chest/tundramoth | ||
icon = 'monkestation/icons/mob/species/tundramoths/bodyparts.dmi' | ||
icon_state = "tundra_moth_chest_m" | ||
icon_static = 'monkestation/icons/mob/species/tundramoths/bodyparts.dmi' | ||
limb_id = SPECIES_TUNDRA | ||
is_dimorphic = TRUE | ||
should_draw_greyscale = FALSE | ||
|
||
/obj/item/bodypart/arm/left/tundramoth | ||
icon = 'monkestation/icons/mob/species/tundramoths/bodyparts.dmi' | ||
icon_state = "tundra_moth_l_arm" | ||
icon_static = 'monkestation/icons/mob/species/tundramoths/bodyparts.dmi' | ||
limb_id = SPECIES_TUNDRA | ||
should_draw_greyscale = FALSE | ||
unarmed_attack_verb = "slash" | ||
unarmed_attack_effect = ATTACK_EFFECT_CLAW | ||
unarmed_attack_sound = 'sound/weapons/slash.ogg' | ||
unarmed_miss_sound = 'sound/weapons/slashmiss.ogg' | ||
|
||
/obj/item/bodypart/arm/right/tundramoth | ||
icon = 'monkestation/icons/mob/species/tundramoths/bodyparts.dmi' | ||
icon_state = "tundra_moth_r_arm" | ||
icon_static = 'monkestation/icons/mob/species/tundramoths/bodyparts.dmi' | ||
limb_id = SPECIES_TUNDRA | ||
should_draw_greyscale = FALSE | ||
unarmed_attack_verb = "slash" | ||
unarmed_attack_effect = ATTACK_EFFECT_CLAW | ||
unarmed_attack_sound = 'sound/weapons/slash.ogg' | ||
unarmed_miss_sound = 'sound/weapons/slashmiss.ogg' | ||
|
||
/obj/item/bodypart/leg/left/tundramoth | ||
icon = 'monkestation/icons/mob/species/tundramoths/bodyparts.dmi' | ||
icon_state = "tundra_moth_l_leg" | ||
icon_static = 'monkestation/icons/mob/species/tundramoths/bodyparts.dmi' | ||
limb_id = SPECIES_TUNDRA | ||
should_draw_greyscale = FALSE | ||
|
||
/obj/item/bodypart/leg/right/tundramoth | ||
icon = 'monkestation/icons/mob/species/tundramoths/bodyparts.dmi' | ||
icon_state = "tundra_moth_r_leg" | ||
icon_static = 'monkestation/icons/mob/species/tundramoths/bodyparts.dmi' | ||
limb_id = SPECIES_TUNDRA | ||
should_draw_greyscale = FALSE |
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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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