1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59:18 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

57
data-asia/SV/SV5a/070.ts Normal file
View File

@ -0,0 +1,57 @@
import { Card } from "../../../interfaces"
import Set from "../SV5a"
const card: Card = {
set: Set,
name: {
ja: "ゴウカザル"
},
illustrator: "Krgc",
category: "Pokemon",
dexId: [392],
hp: 140,
types: ["Fire"],
description: {
ja: "頭で 燃える 炎の ように 激しい 性格の ポケモン。 素早さでは だれにも 負けない。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
ja: "かえんぶとう"
},
effect: {
ja: "自分の番に1回使える。自分の手札から「基本エネルギー」と「基本エネルギー」をそれぞれ1枚まで選び、自分のポケモンに好きなようにつける。"
}
}],
attacks: [{
cost: ["Fire", "Fire", "Colorless"],
name: {
ja: "バーンアウト"
},
damage: 200,
effect: {
ja: "このポケモンについているエネルギーを1個選び、トラッシュする。"
}
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 1
}
export default card