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

50 lines
948 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 "../SVK"
const card: Card = {
set: Set,
name: {
ja: "かがやくゲッコウガ"
},
illustrator: "Souichirou Gunjima",
category: "Pokemon",
hp: 130,
types: ["Water"],
stage: "Basic",
abilities: [{
type: "Ability",
name: {
ja: "かくしふだ"
},
effect: {
ja: "自分の番に、自分の手札からエネルギーを1枚トラッシュするなら、1回使える。自分の山札を2枚引く。"
}
}],
attacks: [{
cost: ["Water", "Water", "Colorless"],
name: {
ja: "げっこうしゅりけん"
},
effect: {
ja: "このポケモンについているエネルギーを2個トラッシュし、相手のポケモン2匹に、それぞれ90ダメージ。ベンチは弱点・抵抗力を計算しない。"
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
rarity: "None"
}
export default card