1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +00:00

feat: Add SV9s (#746)

This commit is contained in:
2025-05-24 20:57:29 +02:00
committed by GitHub
parent db5863caee
commit 651313ce70
186 changed files with 9356 additions and 0 deletions

67
data-asia/SV/SV9s/101.ts Normal file
View File

@ -0,0 +1,67 @@
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