mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-20 20:37:34 +01:00
Zombies upgrade (#17366)
* step 0 * sdad * asdfsad * safsad * actual sprites for the bull from whitewolftamer * Apply suggestions from code review Co-authored-by: Cody Brittain <cbrittain10@yahoo.com> * Update html/changelogs/fluffyghost-zombieupgrade.yml Co-authored-by: Cody Brittain <cbrittain10@yahoo.com> * sisyphus --------- Co-authored-by: Cody Brittain <cbrittain10@yahoo.com>
This commit is contained in:
@@ -6,13 +6,27 @@
|
||||
var/max_stage = 4
|
||||
var/stage_ticker = 0
|
||||
var/recession = 0
|
||||
var/infection_speed = 2 //Will be determined by get_infect_speed()
|
||||
var/infect_speed_high = 35 //The fastest this parasite will advance stages
|
||||
var/infect_speed_low = 15 //The slowest this parasite will advance stages
|
||||
var/stage_interval = 300 //time between stages, in seconds. interval of 300 allows convenient treating with antiparasitics, higher will require spaced dosing of medications.
|
||||
var/subtle = 0 //will the body reject the parasite naturally?
|
||||
var/egg = null //does the parasite have a reagent which seeds an infection?
|
||||
var/drug_resistance = 0 //is the parasite resistant to antiparasitic medications?
|
||||
|
||||
///Infection progress speed, will be determined by get_infect_speed()
|
||||
var/infection_speed = 2
|
||||
|
||||
///The fastest the parasite will advance its stage
|
||||
var/infect_speed_high = 35
|
||||
|
||||
///The fastest the parasite will advance its stage
|
||||
var/infect_speed_low = 15
|
||||
|
||||
///Time between stages, in seconds. interval of 300 allows convenient treating with antiparasitics, higher will require spaced dosing of medications.
|
||||
var/stage_interval = 300
|
||||
|
||||
///Boolean, if the body should reject the parasite naturally
|
||||
var/subtle = FALSE
|
||||
|
||||
///Does the parasite have a reagent which seeds an infection?
|
||||
var/egg = null
|
||||
|
||||
//Boolean, if the parasite is resistant to antiparasitic medications
|
||||
var/drug_resistance = FALSE
|
||||
|
||||
/obj/item/organ/internal/parasite/Initialize()
|
||||
. = ..()
|
||||
@@ -307,8 +321,8 @@
|
||||
|
||||
organ_tag = BP_ZOMBIE_PARASITE
|
||||
parent_organ = BP_HEAD
|
||||
stage_interval = 150
|
||||
drug_resistance = 1
|
||||
stage_interval = 110
|
||||
drug_resistance = TRUE
|
||||
relative_size = 0
|
||||
|
||||
egg = /singleton/reagent/toxin/trioxin
|
||||
|
||||
Reference in New Issue
Block a user