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

64 lines
1.8 KiB
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 "../SV4K"
const card: Card = {
set: Set,
name: {
ja: "グレンアルマex",
'zh-tw': "紅蓮鎧騎ex",
th: "กุเร็นอาร์มาex"
},
illustrator: "takuyoa",
rarity: "Double rare",
category: "Pokemon",
hp: 260,
types: ["Fire"],
stage: "Stage1",
suffix: "EX",
abilities: [{
type: "Ability",
name: {
ja: "グレンアーマー",
'zh-tw': "紅蓮盔甲",
th: "กุเร็นอาร์เมอร์"
},
effect: {
ja: "このポケモンのHPがまんたんの状態なら、このポケモンが相手のポケモンから受けるワザのダメージは「-80」される。",
'zh-tw': "若這隻寶可夢的HP是全滿的狀態則這隻寶可夢受到對手的寶可夢招式的傷害「-80」點。",
th: "ถ้า HP ของโปเกมอนนี้ยังเต็มอยู่ แดเมจของท่าต่อสู้ที่โปเกมอนนี้จะได้รับจากโปเกมอนฝ่ายตรงข้ามจะถูก [-80]"
}
}],
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
ja: "しゃくねつバズーカ",
'zh-tw': "灼熱火箭炮",
th: "บาซูการ้อนระอุ"
},
damage: "40+",
effect: {
ja: "このポケモンについているエネルギーの数×40ダメージ追加。",
'zh-tw': "增加這隻寶可夢身上附加的【火】能量的數量×40點傷害。",
th: "แดเมจจะเพิ่มตามจำนวนพลังงาน[ไฟ]ที่ติดอยู่กับโปเกมอนนี้ x40"
}
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card