mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
57 lines
953 B
TypeScript
57 lines
953 B
TypeScript
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 |