mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-23 08:31:57 +00:00
Overview Adds Battle Monster cards. Battle Monsters is a collectable card game clone like Yugioh or magic the gathering. Players can purchase card packs and use them in games with actual rules to them. Checklist Card Generation Framework: 100% Sprites: 80% Game Rules: 90% Deck Framework: 5% Monster Cards: 20% Spell/Trap Cards: 5% Obtainable Status: 0%
21 lines
505 B
Plaintext
21 lines
505 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 |