1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

50 lines
774 B
TypeScript
Raw Permalink 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 "../SV2D"
const card: Card = {
set: Set,
name: {
ja: "イーユイex"
},
illustrator: "PLANETA Yamashita",
category: "Pokemon",
hp: 190,
types: ["Fire"],
stage: "Basic",
suffix: "EX",
attacks: [{
cost: ["Fire"],
name: {
ja: "ねたみこがす"
},
effect: {
ja: "相手の山札を上から2枚トラッシュする。"
}
}, {
cost: ["Fire", "Fire"],
name: {
ja: "フレイムサージ"
},
damage: 100,
effect: {
ja: "自分のベンチポケモンを3匹まで選び、山札から「基本エネルギー」を1枚ずつつける。そして山札を切る。"
}
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 1
}
export default card