mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-11 10:22:13 +00:00
9 lines
503 B
Plaintext
9 lines
503 B
Plaintext
/datum/component/rad_insulation // Yes, this really is just a component to add some vars
|
|
var/amount // Multiplier for radiation strength passing through
|
|
var/protects // Does this protect things in its contents from being affected?
|
|
var/contamination_proof // Can this object be contaminated?
|
|
|
|
/datum/component/rad_insulation/Initialize(_amount=RAD_MEDIUM_INSULATION, _protects=TRUE, _contamination_proof=TRUE)
|
|
amount = _amount
|
|
protects = _protects
|
|
contamination_proof = _contamination_proof |