Files
Aurora.3/code/modules/battlemonsters/datum_core.dm
BurgerLUA e0430c1bdc [REVIEW ME PLS] Battle Monsters Card Game, or the last* PR. (#5141)
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%
2018-09-02 20:54:27 +03:00

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