1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19: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

69
data-asia/SV/SV1V/016.ts Normal file
View File

@ -0,0 +1,69 @@
import { Card } from "../../../interfaces"
import Set from "../SV1V"
const card: Card = {
set: Set,
name: {
ja: "ウインディex",
'zh-tw': "風速狗ex",
th: "วินดีex",
id: "Arcanine ex"
},
illustrator: "5ban Graphics",
rarity: "Double rare",
category: "Pokemon",
hp: 280,
types: ["Fire"],
stage: "Stage1",
suffix: "EX",
attacks: [{
cost: ["Fire", "Fire"],
name: {
ja: "いかりのツメ",
'zh-tw': "憤怒之爪",
th: "กรงเล็บเกรี้ยวกราด",
id: "Cakar Kemarahan"
},
damage: "30+",
effect: {
ja: "このポケモンにのっているダメカンの数×10ダメージ追加。",
'zh-tw': "增加這隻寶可夢身上放置的傷害指示物的數量×10點傷害。",
th: "แดเมจจะเพิ่มตามจำนวนตัวนับแดเมจที่วางอยู่บนโปเกมอนนี้ x10",
id: "Kerusakan yang diberikan bertambah sejumlah 10 untuk tiap Token Kerusakan yang dimiliki Pokémon ini."
}
}, {
cost: ["Fire", "Fire", "Fire"],
name: {
ja: "ぐれんのほのお",
'zh-tw': "紅蓮火焰",
th: "เพลิงสีเลือด",
id: "Kobaran Api Merah"
},
damage: 250,
effect: {
ja: "このポケモンについているエネルギーを2個選び、トラッシュする。",
'zh-tw': "選擇2個這隻寶可夢身上附加的【火】能量將其丟棄。",
th: "เลือกพลังงาน[ไฟ]ที่ติดอยู่กับโปเกมอนนี้ 2 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด",
id: "Pilih 2 Energi {Api} yang dikenakan pada Pokémon ini, lalu buang ke Trash."
}
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card