1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

60
data-asia/SV/SVDs/108.ts Normal file
View File

@ -0,0 +1,60 @@
import { Card } from "../../../interfaces"
import Set from "../SVDs"
const card: Card = {
set: Set,
name: {
th: "เมลเมทัลex",
id: "Melmetal ex"
},
illustrator: "PLANETA Igarashi",
category: "Pokemon",
hp: 300,
types: ["Metal"],
stage: "Stage1",
suffix: "EX",
attacks: [{
name: {
th: "ดูดซับโลหะ",
id: "Mengisap Logam"
},
effect: {
th: "เลือกการ์ด [พลังงานพื้นฐาน[โลหะ]] ได้สูงสุด 2 ใบจากสำรับการ์ดฝ่ายเรา ติดที่โปเกมอนนี้ แล้วสับสำรับการ์ด",
id: "Pilih paling banyak 2 lembar Energi Dasar {Logam} dari Deck sendiri, lalu kenakan pada Pokémon ini. Kemudian, kocok Deck."
},
cost: ["Metal"]
}, {
name: {
th: "ฟูลเมทัลนักเคิล",
id: "Full Metal Knuckle"
},
effect: {
th: "แดเมจจะเพิ่มตามจำนวนพลังงาน[โลหะ]ที่ติดอยู่กับโปเกมอนนี้ x30",
id: "Kerusakan yang diberikan bertambah sejumlah 30 untuk tiap Energi {Logam} yang dikenakan pada Pokémon ini."
},
damage: "90+",
cost: ["Colorless", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 4,
regulationMark: "G"
}
export default card