mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 00:49:18 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
62
data-asia/SV/SVDs/110.ts
Normal file
62
data-asia/SV/SVDs/110.ts
Normal file
@ -0,0 +1,62 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SVDs"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
th: "ลาวด์โบนex",
|
||||
id: "Skeledirge ex"
|
||||
},
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
category: "Pokemon",
|
||||
hp: 330,
|
||||
types: ["Metal"],
|
||||
stage: "Stage2",
|
||||
suffix: "EX",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
th: "เพลงระเบิดร้อน",
|
||||
id: "Nyanyian Ledakan Panas"
|
||||
},
|
||||
|
||||
effect: {
|
||||
th: "ในเทิร์นฝ่ายเรา ถ้าทิ้งการ์ด [พลังงานพื้นฐาน[ไฟ]] 1 ใบจากบนมือฝ่ายเราที่ตำแหน่งทิ้งการ์ด ใช้ได้ 1 ครั้ง เทิร์นนี้ แดเมจของท่าต่อสู้ที่โปเกมอนฝ่ายเรา ใช้ทำกับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามจะถูก [+60]",
|
||||
id: "Dapat digunakan 1 kali pada giliran sendiri jika membuang 1 lembar Energi Dasar {Api} dari Kartu Pegangan sendiri ke Trash. Pada giliran ini, kerusakan akibat serangan yang digunakan oleh Pokémon sendiri kepada Pokémon Bertarung lawan bertambah sejumlah 60."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
th: "ลัสเตอร์เบิร์น",
|
||||
id: "Luster Burn"
|
||||
},
|
||||
|
||||
effect: {
|
||||
th: "แดเมจของท่าต่อสู้นี้ จะไม่นำเอฟเฟกต์ที่มีผลอยู่กับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามมาคิด",
|
||||
id: "Kerusakan akibat serangan ini tidak terpengaruh oleh efek yang sedang dialami Pokémon Bertarung lawan."
|
||||
},
|
||||
|
||||
damage: 160,
|
||||
cost: ["Fire", "Fire"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Grass",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user