mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 08:19:17 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
69
data-asia/SV/SV1a/020.ts
Normal file
69
data-asia/SV/SV1a/020.ts
Normal file
@ -0,0 +1,69 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV1a"
|
||||
|
||||
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
|
Reference in New Issue
Block a user