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

50 lines
908 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 "../SV5a"
const card: Card = {
set: Set,
name: {
ja: "ヤバソチャex"
},
illustrator: "Saboteri",
category: "Pokemon",
hp: 240,
types: ["Grass"],
stage: "Stage1",
suffix: "EX",
attacks: [{
cost: ["Colorless"],
name: {
ja: "せんじがえし"
},
effect: {
ja: "自分のトラッシュにある「基本エネルギー」をすべて相手に見せ、その枚数×2個ぶんのダメカンを、相手のポケモン1匹にのせる。その後、見せたエネルギーを山札にもどして切る。"
}
}, {
cost: ["Grass", "Colorless"],
name: {
ja: "まっちゃスプラッシュ"
},
damage: 120,
effect: {
ja: "自分のポケモン全員のHPを、それぞれ「30」回復する。"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1
}
export default card