36c580c236
* auto vote runtime error fix * part 1 * adds a wolf pai sprite modified fox sprite that doesn't make your eyes bleed * missed a painful sprite * part 2 * ptwhatever * save * conflict resolution pt1 * conflict resolution pt2 * almost done with the preferences shit * fixes missing arousal HUD * file rename * even more * keep the panic commits coming * forgot one * wew, gonna go make some small changes * s o o n * LOOC admin and player toggles * fixed backpacks and taurs clipping on the preview * fixed penis length saving * typo fix * arousal fix * icon tuning * final
22 lines
622 B
Plaintext
22 lines
622 B
Plaintext
//Will include consumable gene mods in the future.
|
|
|
|
/obj/item/weapon/genemod
|
|
name = "genetic modifier"
|
|
desc = "Microbodies which can grow, morph, or otherwise change an organism into something else."
|
|
icon = 'icons/obj/items.dmi'
|
|
icon_state = "dnainjector"
|
|
throw_speed = 3
|
|
throw_range = 5
|
|
w_class = WEIGHT_CLASS_TINY
|
|
origin_tech = "biotech=3"
|
|
var/applied_region = "chest"
|
|
var/list/add_mutations = list()
|
|
var/list/remove_mutations = list()
|
|
|
|
var/list/add_mutations_static = list()
|
|
var/list/remove_mutations_static = list()
|
|
|
|
var/used = 0
|
|
|
|
/obj/item/weapon/genemod/proc/use(mob/living/carbon/human/target)
|
|
return |