diff --git a/code/__DEFINES/mobs.dm b/code/__DEFINES/mobs.dm index 0a870f95756..6a6e53401d5 100644 --- a/code/__DEFINES/mobs.dm +++ b/code/__DEFINES/mobs.dm @@ -439,6 +439,7 @@ #define PROSTHETIC_SELEN "Selen Head" #define PROSTHETIC_SIENNA "Sienna Head" #define PROSTHETIC_SISEYO "Siseyo Head" +#define PROSTHETIC_CHEAP "Cheap Prosthetic" //Prosthetics that aren't restricted by species #define PROSTHETICS_UNRESTRICTED list(PROSTHETIC_BC, PROSTHETIC_HI, PROSTHETIC_XMG, PROSTHETIC_UNBRANDED, PROSTHETIC_ZH) diff --git a/code/modules/organs/robolimbs.dm b/code/modules/organs/robolimbs.dm index 45fa9ad00d6..be8bb42b583 100644 --- a/code/modules/organs/robolimbs.dm +++ b/code/modules/organs/robolimbs.dm @@ -269,3 +269,11 @@ GLOBAL_DATUM(basic_robolimb, /datum/robolimb) linked_frame = SPECIES_IPC_BISHOP icon = 'icons/mob/human_races/ipc/siseyo.dmi' allowed_external_organs = list(BP_HEAD) + +/datum/robolimb/cheap + company = PROSTHETIC_CHEAP + desc = "A cheap, basic, and outdated prosthetic limb made out of plastic and metal. Straps onto the body." + allows_internal = FALSE + icon = 'icons/mob/human_races/cheap_prosthetic.dmi' + brute_mod = 1.1 + burn_mod = 1.2 diff --git a/html/changelogs/Greenjoe - cheapprosthetic.yml b/html/changelogs/Greenjoe - cheapprosthetic.yml new file mode 100644 index 00000000000..8e79a4d1001 --- /dev/null +++ b/html/changelogs/Greenjoe - cheapprosthetic.yml @@ -0,0 +1,58 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# - (fixes bugs) +# wip +# - (work in progress) +# qol +# - (quality of life) +# soundadd +# - (adds a sound) +# sounddel +# - (removes a sound) +# rscadd +# - (adds a feature) +# rscdel +# - (removes a feature) +# imageadd +# - (adds an image or sprite) +# imagedel +# - (removes an image or sprite) +# spellcheck +# - (fixes spelling or grammar) +# experiment +# - (experimental change) +# balance +# - (balance changes) +# code_imp +# - (misc internal code change) +# refactor +# - (refactors code) +# config +# - (makes a change to the config files) +# admin +# - (makes changes to administrator tools) +# server +# - (miscellaneous changes to server) +################################# + +# Your name. +author: Greenjoe + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, this gets changed to [] after reading. Just remove the brackets when you add new shit. +# Please surround your changes in double quotes ("). It works without them, but if you use certain characters it screws up compiling. The quotes will not show up in the changelog. +changes: + - rscadd: "Adds a new prosthetic limb set to character setup - A cheap, plasticy set of limbs." diff --git a/icons/mob/human_races/cheap_prosthetic.dmi b/icons/mob/human_races/cheap_prosthetic.dmi new file mode 100644 index 00000000000..e4fac52f388 Binary files /dev/null and b/icons/mob/human_races/cheap_prosthetic.dmi differ