mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-01-29 10:41:34 +00:00
* the voices win in the end * cleanup * changelog * secure.dm hates me * make_exact_fit() in initialize instead of whatever was happening before
22 lines
506 B
Plaintext
22 lines
506 B
Plaintext
/datum/battle_monsters
|
|
var/name = "ERROR"
|
|
var/icon_state
|
|
var/id
|
|
var/description = ""
|
|
var/special_effects = ""
|
|
var/tip = "" //A tip for the card.
|
|
var/elements = BATTLE_MONSTERS_ELEMENT_NONE
|
|
var/attack_type = BATTLE_MONSTERS_ATTACKTYPE_NONE
|
|
var/defense_type = BATTLE_MONSTERS_DEFENSETYPE_NONE
|
|
var/rarity = 1 //Relative chance of choosing this attribute
|
|
var/rarity_score = 0
|
|
|
|
var/power_add = 0
|
|
var/power_mul = 1
|
|
|
|
var/attack_add = 0
|
|
var/attack_mul = 1
|
|
|
|
var/defense_add = 0
|
|
var/defense_mul = 1
|