mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-12 15:45:25 +01:00
Upscales Changeling DNA Costs (#22901)
* wait what * 20 not 100 * Another one * why does it not fucking work work * Update code/modules/antagonists/changeling/powers/mutations.dm Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> --------- Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com>
This commit is contained in:
@@ -39,7 +39,7 @@
|
||||
/// If the changeling is in the process of absorbing someone.
|
||||
var/is_absorbing = FALSE
|
||||
/// The amount of points available to purchase changeling abilities.
|
||||
var/genetic_points = 10
|
||||
var/genetic_points = 20
|
||||
/// A name that will display in place of the changeling's real name when speaking.
|
||||
var/mimicing = ""
|
||||
/// If the changeling can respec their purchased abilities.
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
helptext = "Grants us x-ray vision or flash protection. We will become a lot more vulnerable to flash-based devices while x-ray vision is active."
|
||||
button_icon_state = "augmented_eyesight"
|
||||
chemical_cost = 0
|
||||
dna_cost = 2
|
||||
dna_cost = 4
|
||||
active = FALSE
|
||||
power_type = CHANGELING_PURCHASABLE_POWER
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
helptext = "We will be placed in control of a small, fragile creature. We may attack a corpse like this to plant an egg which will slowly mature into a new form for us."
|
||||
button_icon_state = "last_resort"
|
||||
chemical_cost = 20
|
||||
dna_cost = 1
|
||||
dna_cost = 2
|
||||
req_human = TRUE
|
||||
power_type = CHANGELING_PURCHASABLE_POWER
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
helptext = "This is obvious to nearby people, and can destroy standard restraints and closets, and break you out of grabs."
|
||||
button_icon_state = "biodegrade"
|
||||
chemical_cost = 30 //High cost to prevent spam
|
||||
dna_cost = 2
|
||||
dna_cost = 4
|
||||
req_human = TRUE
|
||||
power_type = CHANGELING_PURCHASABLE_POWER
|
||||
/// Type of acid hand we give to person
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
desc = "Our skin pigmentation rapidly changes to suit our current environment. Costs 25 chemicals."
|
||||
helptext = "Allows us to become invisible after a few seconds of standing still. Can be toggled on and off."
|
||||
button_icon_state = "chameleon_skin"
|
||||
dna_cost = 2
|
||||
dna_cost = 4
|
||||
chemical_cost = 25
|
||||
req_human = TRUE
|
||||
power_type = CHANGELING_PURCHASABLE_POWER
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
desc = "We contort our body, allowing us to fit in and under things we normally wouldn't be able to. Costs 25 chemicals."
|
||||
button_icon_state = "contort_body"
|
||||
chemical_cost = 25
|
||||
dna_cost = 2
|
||||
dna_cost = 4
|
||||
power_type = CHANGELING_PURCHASABLE_POWER
|
||||
|
||||
/datum/action/changeling/contort_body/Remove(mob/M)
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
desc = "By evolving the ability to distort our form and proportions, we defeat common algorithms used to detect lifeforms on cameras."
|
||||
helptext = "We cannot be tracked by camera while using this skill."
|
||||
button_icon_state = "digital_camo"
|
||||
dna_cost = 1
|
||||
dna_cost = 2
|
||||
power_type = CHANGELING_PURCHASABLE_POWER
|
||||
|
||||
/datum/action/changeling/digitalcamo/Remove(mob/M)
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
helptext = "Removes all stuns instantly and adds a short term reduction in further stuns. Can be used while unconscious. Continued use poisons the body."
|
||||
button_icon_state = "adrenaline"
|
||||
chemical_cost = 30
|
||||
dna_cost = 2
|
||||
dna_cost = 4
|
||||
req_human = TRUE
|
||||
req_stat = UNCONSCIOUS
|
||||
power_type = CHANGELING_PURCHASABLE_POWER
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
helptext = "Does not regrow limbs. Partially recovers our blood. Functions while unconscious."
|
||||
button_icon_state = "fleshmend"
|
||||
chemical_cost = 20
|
||||
dna_cost = 2
|
||||
dna_cost = 4
|
||||
req_stat = UNCONSCIOUS
|
||||
power_type = CHANGELING_PURCHASABLE_POWER
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ GLOBAL_LIST_EMPTY(hivemind_bank)
|
||||
helptext = "Tunes our chemical receptors for hivemind communication, which passively grants us access to the Changeling Hivemind."
|
||||
button_icon_state = "hive_absorb"
|
||||
chemical_cost = 10
|
||||
dna_cost = 2
|
||||
dna_cost = 4
|
||||
power_type = CHANGELING_PURCHASABLE_POWER
|
||||
|
||||
/datum/action/changeling/hivemind_pick/on_purchase(mob/user, datum/antagonist/changeling/C)
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
helptext = "The transformation greatly reduces our size, allowing us to slip out of cuffs and climb through vents."
|
||||
button_icon_state = "lesser_form"
|
||||
chemical_cost = 5
|
||||
dna_cost = 1
|
||||
dna_cost = 2
|
||||
req_human = TRUE
|
||||
power_type = CHANGELING_PURCHASABLE_POWER
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
helptext = "Will turn your voice into the name that you enter."
|
||||
button_icon_state = "mimic_voice"
|
||||
chemical_cost = 0
|
||||
dna_cost = 1
|
||||
dna_cost = 2
|
||||
req_human = TRUE
|
||||
power_type = CHANGELING_PURCHASABLE_POWER
|
||||
|
||||
|
||||
@@ -116,7 +116,7 @@
|
||||
helptext = "We may retract our armblade in the same manner as we form it. Cannot be used while in lesser form."
|
||||
button_icon_state = "armblade"
|
||||
chemical_cost = 25
|
||||
dna_cost = 2
|
||||
dna_cost = 4
|
||||
req_human = TRUE
|
||||
weapon_type = /obj/item/melee/arm_blade
|
||||
weapon_name_simple = "blade"
|
||||
@@ -181,7 +181,7 @@
|
||||
Cannot be used while in our lesser form."
|
||||
button_icon_state = "tentacle"
|
||||
chemical_cost = 10
|
||||
dna_cost = 2
|
||||
dna_cost = 4
|
||||
req_human = TRUE
|
||||
weapon_type = /obj/item/gun/magic/tentacle
|
||||
weapon_name_simple = "tentacle"
|
||||
@@ -386,7 +386,7 @@
|
||||
helptext = "Organic tissue cannot resist damage forever. The shield will break after it is hit too much. The more DNA we collect, the stronger it is. Cannot be used while in lesser form."
|
||||
button_icon_state = "organic_shield"
|
||||
chemical_cost = 20
|
||||
dna_cost = 1
|
||||
dna_cost = 2
|
||||
req_human = TRUE
|
||||
weapon_type = /obj/item/shield/changeling
|
||||
weapon_name_simple = "shield"
|
||||
@@ -434,7 +434,7 @@
|
||||
helptext = "We must constantly repair our form to make it space proof, reducing chemical production while we are protected. Cannot be used in lesser form."
|
||||
button_icon_state = "organic_suit"
|
||||
chemical_cost = 20
|
||||
dna_cost = 2
|
||||
dna_cost = 4
|
||||
req_human = TRUE
|
||||
power_type = CHANGELING_PURCHASABLE_POWER
|
||||
suit_type = /obj/item/clothing/suit/space/changeling
|
||||
@@ -480,7 +480,7 @@
|
||||
helptext = "Upkeep of the armor requires a low expenditure of chemicals. The armor is strong against brute force, but does not provide much protection from lasers. Cannot be used in lesser form."
|
||||
button_icon_state = "chitinous_armor"
|
||||
chemical_cost = 25
|
||||
dna_cost = 2
|
||||
dna_cost = 4
|
||||
req_human = TRUE
|
||||
power_type = CHANGELING_PURCHASABLE_POWER
|
||||
suit_type = /obj/item/clothing/suit/armor/changeling
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
helptext = "Can be used while unconscious."
|
||||
button_icon_state = "panacea"
|
||||
chemical_cost = 20
|
||||
dna_cost = 1
|
||||
dna_cost = 2
|
||||
req_stat = UNCONSCIOUS
|
||||
power_type = CHANGELING_PURCHASABLE_POWER
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
helptext = "Emits a high frequency sound that confuses and deafens humans, blows out nearby lights and overloads cyborg sensors."
|
||||
button_icon_state = "resonant_shriek"
|
||||
chemical_cost = 30
|
||||
dna_cost = 1
|
||||
dna_cost = 2
|
||||
req_human = TRUE
|
||||
power_type = CHANGELING_PURCHASABLE_POWER
|
||||
|
||||
@@ -41,7 +41,7 @@
|
||||
desc = "We shift our vocal cords to release a high frequency sound that overloads nearby electronics. Costs 30 chemicals."
|
||||
button_icon_state = "dissonant_shriek"
|
||||
chemical_cost = 30
|
||||
dna_cost = 1
|
||||
dna_cost = 2
|
||||
power_type = CHANGELING_PURCHASABLE_POWER
|
||||
|
||||
//A flashy ability, good for crowd control and sewing chaos.
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
helptext = "The strain will use up our chemicals faster over time, and is not sustainable. Can not be used in lesser form."
|
||||
button_icon_state = "strained_muscles"
|
||||
chemical_cost = 0
|
||||
dna_cost = 1
|
||||
dna_cost = 2
|
||||
req_human = TRUE
|
||||
power_type = CHANGELING_PURCHASABLE_POWER
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
helptext = "The spiders are thoughtless creatures, but will not attack their creators. Requires at least 7 stored DNA. Their orders can be changed via remote hivemind (Alt+Shift click)."
|
||||
button_icon_state = "spread_infestation"
|
||||
chemical_cost = 45
|
||||
dna_cost = 2
|
||||
dna_cost = 4
|
||||
req_dna = 7
|
||||
/// This var keeps track of the changeling's spider count
|
||||
var/spider_counter = 0
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
helptext = "We will bring all our abilities with us, but we will lose our old form DNA in exchange for the new one. The process will seem suspicious to any observers."
|
||||
button_icon_state = "cling_mindswap"
|
||||
chemical_cost = 40
|
||||
dna_cost = 1
|
||||
dna_cost = 2
|
||||
req_human = TRUE //Monkeys can't grab
|
||||
power_type = CHANGELING_PURCHASABLE_POWER
|
||||
|
||||
|
||||
@@ -98,7 +98,7 @@
|
||||
button_icon_state = "sting_mute"
|
||||
sting_icon = "sting_mute"
|
||||
chemical_cost = 20
|
||||
dna_cost = 2
|
||||
dna_cost = 4
|
||||
power_type = CHANGELING_PURCHASABLE_POWER
|
||||
|
||||
/datum/action/changeling/sting/mute/sting_action(mob/user, mob/living/carbon/target)
|
||||
@@ -114,7 +114,7 @@
|
||||
button_icon_state = "sting_blind"
|
||||
sting_icon = "sting_blind"
|
||||
chemical_cost = 25
|
||||
dna_cost = 1
|
||||
dna_cost = 2
|
||||
power_type = CHANGELING_PURCHASABLE_POWER
|
||||
|
||||
/datum/action/changeling/sting/blind/sting_action(mob/living/user, mob/living/target)
|
||||
@@ -133,7 +133,7 @@
|
||||
button_icon_state = "sting_cryo"
|
||||
sting_icon = "sting_cryo"
|
||||
chemical_cost = 15
|
||||
dna_cost = 2
|
||||
dna_cost = 4
|
||||
power_type = CHANGELING_PURCHASABLE_POWER
|
||||
|
||||
/datum/action/changeling/sting/cryo/sting_action(mob/user, mob/target)
|
||||
|
||||
Reference in New Issue
Block a user