mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-23 03:57:13 +01:00
Destroy AI chance and Cling surgery
- Decreased destroy objective chance from 10% to 4% for clings and traitors. Should be so slightly rarer than hijack, so you should stop seeing it every round. - Changeling arm blades can be used as ghetto circular saws, this will help changelings with their debrain objectives a bit, a ghetto scalpel is easily found in the form of a glass shard already.
This commit is contained in:
@@ -105,7 +105,7 @@ var/list/possible_changeling_IDs = list("Alpha","Beta","Gamma","Delta","Epsilon"
|
||||
changeling.objectives += debrain_objective
|
||||
|
||||
var/list/active_ais = active_ais()
|
||||
if(active_ais.len && prob(10)) // num_players() proc is designed for roundstart, changed to fixed value to prevent problems with mid-round objective randomization.
|
||||
if(active_ais.len && prob(4)) // Leaving this at a flat chance for now, problems with the num_players() proc due to latejoin antags.
|
||||
var/datum/objective/destroy/destroy_objective = new
|
||||
destroy_objective.owner = changeling
|
||||
destroy_objective.find_target()
|
||||
|
||||
@@ -107,7 +107,7 @@
|
||||
assign_exchange_role(exchange_blue)
|
||||
else
|
||||
var/list/active_ais = active_ais()
|
||||
if(active_ais.len && prob(10)) // Leaving this at a flat chance for now, problems with the num_players() proc.
|
||||
if(active_ais.len && prob(4)) // Leaving this at a flat chance for now, problems with the num_players() proc due to latejoin antags.
|
||||
var/datum/objective/destroy/destroy_objective = new
|
||||
destroy_objective.owner = traitor
|
||||
destroy_objective.find_target()
|
||||
|
||||
Reference in New Issue
Block a user