Commit ed33ad0a authored by Chunchi Che's avatar Chunchi Che

impl negated

parent 28b814f7
Pipeline #28776 passed with stages
in 11 minutes and 57 seconds
...@@ -63,7 +63,7 @@ import { ...@@ -63,7 +63,7 @@ import {
TYPE_XYZ, TYPE_XYZ,
} from "@/common"; } from "@/common";
import { extraCardTypes } from "@/common"; import { extraCardTypes } from "@/common";
import { CardType } from "@/stores/cardStore"; import { CardType, isCardDisabled } from "@/stores/cardStore";
import { import {
ActionMsg, ActionMsg,
...@@ -352,8 +352,7 @@ export function convertCard(card: CardType, player: number): Card { ...@@ -352,8 +352,7 @@ export function convertCard(card: CardType, player: number): Card {
race: numberToRace(meta.data.race ?? 0), race: numberToRace(meta.data.race ?? 0),
level: meta.data.level ?? 0, level: meta.data.level ?? 0,
counter: getCounter(counters), counter: getCounter(counters),
// TODO (ygo-agent): add negated negated: isCardDisabled(card),
negated: false,
attack: meta.data.atk ?? 0, attack: meta.data.atk ?? 0,
defense: meta.data.def ?? 0, defense: meta.data.def ?? 0,
types: extraCardTypes(meta.data.type ?? 0).map(numberToType), types: extraCardTypes(meta.data.type ?? 0).map(numberToType),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment