1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-31 20:01:58 +00:00

feat: Update asian sets (#554)

This commit is contained in:
2024-11-05 23:46:04 +01:00
committed by GitHub
parent 64bcd0524d
commit c1d83caca0
546 changed files with 26414 additions and 0 deletions

50
data-asia/SV/SVK/004.ts Normal file
View File

@@ -0,0 +1,50 @@
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