mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-29 02:59:53 +00:00
67 lines
1.8 KiB
TypeScript
67 lines
1.8 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV9s"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
th: "มาเกียนา",
|
||
id: "Magearna"
|
||
},
|
||
|
||
illustrator: "rika",
|
||
category: "Pokemon",
|
||
hp: 90,
|
||
types: ["Metal"],
|
||
|
||
description: {
|
||
th: "ถูกสร้างขึ้นมาโดยนักวิทยาศาสตร์เมื่อราว 500 ปีก่อน ส่วนที่เรียกว่า โซลฮาร์ตเป็นร่างหลัก",
|
||
id: "Magearna dibuat oleh ilmuwan sekitar 500 tahun yang lalu. Bagian yang disebut Soul-Heart adalah tubuh aslinya."
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
abilities: [{
|
||
type: "Ability",
|
||
|
||
name: {
|
||
th: "ออโตฮีล",
|
||
id: "Auto Heal"
|
||
},
|
||
|
||
effect: {
|
||
th: "ตราบใดที่โปเกมอนนี้ยังอยู่บนตำแหน่งต่อสู้ ทุกครั้งที่ติดการ์ดพลังงานจากบนมือ ฝ่ายเราที่โปเกมอน ฟื้นฟู HP ของโปเกมอนนั้น [90]",
|
||
id: "Selama Pokémon ini ada di Arena Bertarung, tiap kali pemain mengenakan Energi dari Kartu Pegangan pada Pokémon, pulihkan HP Pokémon tersebut sejumlah 90 untuk tiap lembar Energi."
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
name: {
|
||
th: "สไปก์ดรอว์",
|
||
id: "Spike Draw"
|
||
},
|
||
|
||
effect: {
|
||
th: "จั่วการ์ด 2 ใบจากสำรับการ์ดฝ่ายเรา",
|
||
id: "Ambil 2 kartu dari atas Deck sendiri."
|
||
},
|
||
|
||
damage: 20,
|
||
cost: ["Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fire",
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: "Grass",
|
||
value: "-30"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "I"
|
||
}
|
||
|
||
export default card |