1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

57 lines
953 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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