mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-22 16:12:19 +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%
10 lines
271 B
Plaintext
10 lines
271 B
Plaintext
/datum/holodeck_program
|
|
var/target
|
|
var/list/ambience = null
|
|
var/loop_ambience = TRUE
|
|
|
|
/datum/holodeck_program/New(var/target, var/list/ambience = null, var/loop_ambience = TRUE)
|
|
src.target = target
|
|
src.ambience = ambience
|
|
src.loop_ambience = loop_ambience
|