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:
56
data-asia/SV/SVDs/017.ts
Normal file
56
data-asia/SV/SVDs/017.ts
Normal file
@ -0,0 +1,56 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SVDs"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
th: "ลิซาร์ดอนex",
|
||||
id: "Charizard ex"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA Mochizuki",
|
||||
category: "Pokemon",
|
||||
hp: 330,
|
||||
types: ["Fire"],
|
||||
stage: "Stage2",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
th: "เบรฟวิง",
|
||||
id: "Brave Wing"
|
||||
},
|
||||
|
||||
effect: {
|
||||
th: "ถ้าโปเกมอนนี้มีตัวนับแดเมจวางอยู่ การโจมตีนี้จะเพิ่มแดเมจอีก 100",
|
||||
id: "Jika Pokémon ini memiliki Token Kerusakan, kerusakan yang diberikan bertambah sejumlah 100."
|
||||
},
|
||||
|
||||
damage: "60+",
|
||||
cost: ["Fire"]
|
||||
}, {
|
||||
name: {
|
||||
th: "วงล้อระเบิดไฟ",
|
||||
id: "Pusaran Ledakan Api"
|
||||
},
|
||||
|
||||
effect: {
|
||||
th: "เลือกพลังงานที่ติดอยู่กับโปเกมอนนี้ 3 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด",
|
||||
id: "Pilih 3 Energi yang dikenakan pada Pokémon ini, lalu buang ke Trash."
|
||||
},
|
||||
|
||||
damage: 330,
|
||||
cost: ["Fire", "Fire", "Fire", "Fire"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user