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

69
data-asia/SV/SV4a/032.ts Normal file
View File

@ -0,0 +1,69 @@
import { Card } from "../../../interfaces"
import Set from "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "ラウドボーンex",
'zh-tw': "骨紋巨聲鱷ex",
th: "ลาวด์โบนex",
id: "Skeledirge ex"
},
illustrator: "5ban Graphics",
rarity: "Double rare",
category: "Pokemon",
hp: 340,
types: ["Fire"],
stage: "Stage2",
suffix: "EX",
attacks: [{
cost: ["Fire"],
name: {
ja: "かつりょくのうた",
'zh-tw': "活力之歌",
th: "บทเพลงเปี่ยมพลัง",
id: "Lagu Vitalitas"
},
damage: 50,
effect: {
ja: "自分のポケモン全員のHPを、それぞれ「30」回復する。",
'zh-tw': "將自己的所有寶可夢各恢復「30」HP。",
th: "ฟื้นฟู HP ของโปเกมอนฝ่ายเราทุกตัว ตัวละ [30]",
id: "Pulihkan HP semua Pokémon sendiri masing-masing sejumlah 30."
}
}, {
cost: ["Fire", "Fire"],
name: {
ja: "バーニングボイス",
'zh-tw': "燃燒之聲",
th: "เบิร์นนิงวอยซ์",
id: "Burning Voice"
},
damage: "270-",
effect: {
ja: "このポケモンにのっているダメカンの数×10ダメージぶん、このワザのダメージは小さくなる。",
'zh-tw': "減少這隻寶可夢身上放置的傷害指示物的數量×10點傷害。",
th: "แดเมจของท่าต่อสู้นี้จะลดลง ตามจำนวนตัวนับแดเมจที่วางอยู่บนโปเกมอนนี้ x10",
id: "Kerusakan akibat serangan ini berkurang sejumlah 10 untuk tiap Token Kerusakan yang dimiliki Pokémon ini."
}
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card