mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-13 10:23:15 +00:00
Also removed some mob vars like sdisabilities and merged the usability with disabilities Removed need for mutations var, they are not handled in dna Removed blinded var, now its handled by eye_blind being bigger than zero Ands lots, lots of other shit in files that used mutations
28 lines
590 B
Plaintext
28 lines
590 B
Plaintext
//////////////
|
|
var/NEARSIGHTBLOCK = 0
|
|
var/EPILEPSYBLOCK = 0
|
|
var/COUGHBLOCK = 0
|
|
var/TOURETTESBLOCK = 0
|
|
var/NERVOUSBLOCK = 0
|
|
var/BLINDBLOCK = 0
|
|
var/DEAFBLOCK = 0
|
|
var/HULKBLOCK = 0
|
|
var/TELEBLOCK = 0
|
|
var/FIREBLOCK = 0
|
|
var/XRAYBLOCK = 0
|
|
var/CLUMSYBLOCK = 0
|
|
var/STRANGEBLOCK = 0
|
|
var/RACEBLOCK = 0
|
|
|
|
var/list/bad_se_blocks
|
|
var/list/good_se_blocks
|
|
var/list/op_se_blocks
|
|
|
|
var/NULLED_SE
|
|
var/NULLED_UI
|
|
|
|
var/list/global_mutations = list() // list of hidden mutation things
|
|
|
|
var/list/bad_mutations = list()
|
|
var/list/good_mutations = list()
|
|
var/list/not_good_mutations = list() |