1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00

52 lines
727 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SV1S"
const card: Card = {
set: Set,
name: {
ja: "イダイナキバex"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 250,
types: ["Fighting"],
stage: "Basic",
suffix: "EX",
attacks: [{
cost: ["Fighting"],
name: {
ja: "がんばんくずし"
},
damage: 40,
effect: {
ja: "場に出ているスタジアムをトラッシュする。"
}
}, {
cost: ["Fighting", "Fighting", "Fighting"],
name: {
ja: "ギガントタスク"
},
damage: 250,
effect: {
ja: "このポケモンにも50ダメージ。"
}
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 4
}
export default card