mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2026-01-03 05:33:07 +00:00
14 lines
446 B
Plaintext
14 lines
446 B
Plaintext
/datum/fantasy_affix
|
|
var/placement // A bitflag of "slots" this affix takes up, for example pre/suffix
|
|
var/alignment
|
|
var/weight = 10
|
|
|
|
// For those occasional affixes which only make sense in certain circumstances
|
|
/datum/fantasy_affix/proc/validate(datum/component/fantasy/comp)
|
|
return TRUE
|
|
|
|
/datum/fantasy_affix/proc/apply(datum/component/fantasy/comp, newName)
|
|
return newName
|
|
|
|
/datum/fantasy_affix/proc/remove(datum/component/fantasy/comp)
|