mirror of
https://github.com/KabKebab/GS13.git
synced 2026-08-25 05:56:27 +01:00
taur fix, diseases
- made preset for WG / blueberry symptom diseases - added berry symptom to sentient virus - changed fat taur drake sprites to be 2-toned
This commit is contained in:
@@ -41,3 +41,33 @@
|
||||
|
||||
name = "Sample #[rand(1,10000)]"
|
||||
..()
|
||||
|
||||
|
||||
// Weight gain - GS13
|
||||
/datum/disease/advance/weight_gain
|
||||
copy_type = /datum/disease/advance
|
||||
|
||||
/datum/disease/advance/weight_gain/New(make_typecache = TRUE)
|
||||
name = "Weight Gain"
|
||||
symptoms = list(new/datum/symptom/weight_gain)
|
||||
..()
|
||||
|
||||
/obj/item/reagent_containers/glass/bottle/weight_gain
|
||||
name = "Weight gain virus bottle"
|
||||
desc = "A small bottle. Contains weight gain virus in synthblood medium."
|
||||
spawned_disease = /datum/disease/advance/weight_gain
|
||||
|
||||
|
||||
// Berry virus - GS13
|
||||
/datum/disease/advance/berry_virus
|
||||
copy_type = /datum/disease/advance
|
||||
|
||||
/datum/disease/advance/berry_virus/New(make_typecache = TRUE)
|
||||
name = "Blueberry Virus"
|
||||
symptoms = list(new/datum/symptom/berry)
|
||||
..()
|
||||
|
||||
/obj/item/reagent_containers/glass/bottle/berry
|
||||
name = "Blueberry virus bottle"
|
||||
desc = "A small bottle. Contains blueberry virus in synthblood medium."
|
||||
spawned_disease = /datum/disease/advance/berry_virus
|
||||
|
||||
@@ -434,6 +434,11 @@ GLOBAL_LIST_INIT(disease_ability_singletons, list(
|
||||
short_desc = "Cause victims to gain weight."
|
||||
long_desc = "Cause victims to gain weight. Boosts stage speed, but weakens all other stats."
|
||||
|
||||
/datum/disease_ability/symptom/medium/heal/berry // GS13
|
||||
symptoms = list(/datum/symptom/berry)
|
||||
short_desc = "Cause victims to start filling up with blueberry juice."
|
||||
long_desc = "Cause victims to fill up with blueberry juice."
|
||||
|
||||
/datum/disease_ability/symptom/medium/robotic_adaptation // GS13
|
||||
symptoms = list(/datum/symptom/robotic_adaptation)
|
||||
short_desc = "Allows to infect robotic races."
|
||||
|
||||
@@ -28,7 +28,7 @@
|
||||
advanced_virus = TRUE
|
||||
|
||||
if(!virus_type && !advanced_virus)
|
||||
virus_type = pick(/datum/disease/dnaspread, /datum/disease/advance/flu, /datum/disease/advance/cold, /datum/disease/brainrot, /datum/disease/magnitis)
|
||||
virus_type = pick(/datum/disease/dnaspread, /datum/disease/advance/flu, /datum/disease/advance/cold, /datum/disease/magnitis)
|
||||
|
||||
for(var/mob/living/carbon/human/H in shuffle(GLOB.alive_mob_list))
|
||||
var/turf/T = get_turf(H)
|
||||
|
||||
@@ -1912,7 +1912,6 @@ datum/sprite_accessory/mam_tails/insect
|
||||
/datum/sprite_accessory/taur/fatdrake //ported from Vorestation
|
||||
name = "Fat Drake"
|
||||
icon_state = "fatdrake"
|
||||
color_src = MUTCOLORS
|
||||
/datum/sprite_accessory/taur/fatwolf //ported from Vorestation
|
||||
name = "Fat Wolf"
|
||||
icon_state = "fatwolf"
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 73 KiB After Width: | Height: | Size: 72 KiB |
Reference in New Issue
Block a user