mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
57 lines
1.7 KiB
TypeScript
57 lines
1.7 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SVDs"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
th: "กุเร็นอาร์มา",
|
||
id: "Armarouge"
|
||
},
|
||
|
||
illustrator: "Souichirou Gunjima",
|
||
category: "Pokemon",
|
||
hp: 120,
|
||
types: ["Fire"],
|
||
|
||
description: {
|
||
th: "ร่างที่วิวัฒนาการด้วยชุดเกราะของนักรบที่สร้างผลงานมามากมาย เป็นโปเกมอนที่มีความจงรักภักดีมาก",
|
||
id: "Wujud evolusi dari Charcadet menjadi Armarouge berkat zirah milik pendekar yang memenangkan banyak pertarungan. Pokémon yang sangat setia."
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
abilities: [{
|
||
type: "Ability",
|
||
|
||
name: {
|
||
th: "เกราะร้อนระอุ",
|
||
id: "Zirah Berpijar"
|
||
},
|
||
|
||
effect: {
|
||
th: "เมื่อโปเกมอนนี้ อยู่บนตำแหน่งต่อสู้และได้รับแดเมจของท่าต่อสู้จากโปเกมอนฝ่ายตรงข้าม ทำให้โปเกมอนที่ใช้ท่าต่อสู้เป็นสภาวะ[ไหม้]",
|
||
id: "Saat Pokémon ini ada di Arena Bertarung dan menerima kerusakan akibat serangan dari Pokémon lawan, ubah kondisi Pokémon yang telah menggunakan serangan menjadi Luka Bakar."
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
name: {
|
||
th: "ปืนใหญ่ระเบิดร้อน",
|
||
id: "Meriam Ledakan Panas"
|
||
},
|
||
|
||
damage: 70,
|
||
cost: ["Fire", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Water",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "G"
|
||
}
|
||
|
||
export default card |