mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-30 00:29:02 +01:00
Changeling Rebuff (#3393)
* a * Update changeling.dm * a * a * Update mutations.dm * Update mutations.dm * a * Changeling Trueform Timer Yes * a * Update true_changeling.dm
This commit is contained in:
@@ -19,23 +19,25 @@
|
||||
|
||||
var/list/stored_profiles = list() //list of datum/changelingprofile
|
||||
var/datum/changelingprofile/first_prof = null
|
||||
var/dna_max = 6 //How many extra DNA strands the changeling can store for transformation.
|
||||
var/dna_max = 8 //How many extra DNA strands the changeling can store for transformation. // SKYRAT EDIT CHANGE : ORIGINAL: 6
|
||||
var/absorbedcount = 0
|
||||
var/trueabsorbs = 0//dna gained using absorb, not dna sting
|
||||
var/chem_charges = 20
|
||||
var/chem_storage = 75
|
||||
var/chem_recharge_rate = 0.5
|
||||
var/chem_charges = 75 //SKYRAT EDIT CHANGE - ORIGINAL: 20
|
||||
var/chem_storage = 125 //SKYRAT EDIT CHANGE - ORIGINAL: 75
|
||||
var/chem_recharge_rate = 2 //SKYRAT EDIT CHANGE - ORIGINAL: 1
|
||||
var/chem_recharge_slowdown = 0
|
||||
var/sting_range = 2
|
||||
var/geneticdamage = 0
|
||||
var/was_absorbed = FALSE //if they were absorbed by another ling already.
|
||||
var/isabsorbing = FALSE
|
||||
var/islinking = FALSE
|
||||
var/geneticpoints = 10
|
||||
var/total_geneticspoints = 10
|
||||
var/total_chem_storage = 75
|
||||
var/geneticpoints = 15 //SKYRAT EDIT CHANGE - ORIGINAL: 10
|
||||
var/total_geneticspoints = 15 //SKYRAT EDIT CHANGE - ORIGINAL: 10
|
||||
var/total_chem_storage = 125 //SKYRAT EDIT CHANGE - ORIGINAL: 75
|
||||
var/purchasedpowers = list()
|
||||
|
||||
var/true_form_death //SKYRAT EDIT ADDITION: The time that the horror form died.
|
||||
|
||||
var/mimicing = ""
|
||||
var/canrespec = FALSE//set to TRUE in absorb.dm
|
||||
var/changeling_speak = 0
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
..()
|
||||
to_chat(user, "<span class='notice'>Energy rushes through us.</span>")
|
||||
user.SetKnockdown(0)
|
||||
user.setStaminaLoss(0) //SKYRAT EDIT ADDITION
|
||||
user.set_resting(FALSE)
|
||||
user.reagents.add_reagent(/datum/reagent/medicine/changelingadrenaline, 4) //20 seconds
|
||||
user.reagents.add_reagent(/datum/reagent/medicine/changelinghaste, 3) //6 seconds, for a really quick burst of speed
|
||||
|
||||
@@ -155,7 +155,7 @@
|
||||
righthand_file = 'icons/mob/inhands/antag/changeling_righthand.dmi'
|
||||
item_flags = NEEDS_PERMIT | ABSTRACT | DROPDEL
|
||||
w_class = WEIGHT_CLASS_HUGE
|
||||
force = 25
|
||||
force = 30 //SKYRAT EDIT - ORIGINAL: 25
|
||||
throwforce = 0 //Just to be on the safe side
|
||||
throw_range = 0
|
||||
throw_speed = 0
|
||||
@@ -163,8 +163,8 @@
|
||||
attack_verb_continuous = list("attacks", "slashes", "stabs", "slices", "tears", "lacerates", "rips", "dices", "cuts")
|
||||
attack_verb_simple = list("attack", "slash", "stab", "slice", "tear", "lacerate", "rip", "dice", "cut")
|
||||
sharpness = SHARP_EDGED
|
||||
wound_bonus = -20
|
||||
bare_wound_bonus = 20
|
||||
wound_bonus = 20 //SKYRAT EDIT - ORIGINAL: -20
|
||||
bare_wound_bonus = 30 //SKYRAT EDIT: ORIGINAL: 20
|
||||
var/can_drop = FALSE
|
||||
var/fake = FALSE
|
||||
|
||||
|
||||
Reference in New Issue
Block a user