35 lines
721 B
JavaScript
35 lines
721 B
JavaScript
import { GameEvent } from "./library/element/game-event.js";
|
|
import { ai } from "./game-status/ai.js";
|
|
import { cardTag } from "./game-status/card-tag.js";
|
|
import { postReconnect } from "./game-status/post-reconnect.js";
|
|
|
|
export const status = {
|
|
paused: false,
|
|
paused2: false,
|
|
paused3: false,
|
|
over: false,
|
|
clicked: false,
|
|
auto: false,
|
|
event: GameEvent.initialGameEvent(),
|
|
ai: ai,
|
|
lastdragchange: [],
|
|
skillaudio: [],
|
|
dieClose: [],
|
|
dragline: [],
|
|
dying: [],
|
|
/**
|
|
* @type {import("./game-status/global-history.js").GlobalHistory[]}
|
|
*/
|
|
globalHistory: [{
|
|
cardMove: [],
|
|
custom: [],
|
|
useCard: [],
|
|
changeHp: [],
|
|
everything: []
|
|
}],
|
|
cardtag: cardTag,
|
|
renku: [],
|
|
prehidden_skills: [],
|
|
postReconnect
|
|
}
|