1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

52 lines
782 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 "../SV1V"
const card: Card = {
set: Set,
name: {
ja: "ウインディex"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 280,
types: ["Fire"],
stage: "Stage1",
suffix: "EX",
attacks: [{
cost: ["Fire", "Fire"],
name: {
ja: "いかりのツメ"
},
damage: "30",
effect: {
ja: "このポケモンにのっているダメカンの数×10ダメージ追加。"
}
}, {
cost: ["Fire", "Fire", "Fire"],
name: {
ja: "ぐれんのほのお"
},
damage: 250,
effect: {
ja: "このポケモンについているエネルギーを2個選び、トラッシュする。"
}
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 3
}
export default card