1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +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/SV1S/080.ts Normal file
View File

@ -0,0 +1,57 @@
import { Card } from "../../../interfaces"
import Set from "../SV1S"
const card: Card = {
set: Set,
name: {
ja: "グレンアルマ"
},
illustrator: "nagimiso",
category: "Pokemon",
dexId: [936],
hp: 130,
types: ["Fire"],
description: {
ja: "多くの 武勲を 立てた 戦士の 鎧によって 進化した 姿。 忠誠心の 厚い ポケモン。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
ja: "ひおくり"
},
effect: {
ja: "自分の番に何回でも使える。自分のベンチポケモンについているエネルギーを1個選び、バトルポケモンにつけ替える。"
}
}],
attacks: [{
cost: ["Fire", "Fire", "Colorless"],
name: {
ja: "フレイムキャノン"
},
damage: 90,
effect: {
ja: "相手のバトルポケモンをやけどにする。"
}
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2
}
export default card