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:
57
data-asia/SV/SV1S/080.ts
Normal file
57
data-asia/SV/SV1S/080.ts
Normal 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
|
Reference in New Issue
Block a user