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/SV4a/048.ts Normal file
View File

@ -0,0 +1,69 @@
import { Card } from "../../../interfaces"
import Set from "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "ミガルーサ",
'zh-tw': "輕身鱈",
th: "มิกาลูซา",
id: "Veluza"
},
illustrator: "Anesaki Dynamic",
category: "Pokemon",
dexId: [976],
hp: 130,
types: ["Water"],
description: {
ja: "無駄な 肉を 捨て去ると 心が 研ぎ澄まされ サイコパワーが 上がる。 贅肉は 淡白だが 美味しい。",
'zh-tw': "捨棄不必要的肉,能使其心靈受到磨練,精神力量得以提升。 贅肉滋味清淡,但卻相當可口。",
th: "จิตใจจะถูกขัดเกลาและพลังจิตจะสูงขึ้นเมื่อละทิ้งกายเนื้อที่ไม่จำเป็น ไขมันส่วนเกินสีขาวอ่อนนั้นมีรสชาติดี",
id: "Begitu membuang daging yang tidak dibutuhkan, hati Veluza menjadi terasah dan kekuatan psikokinesisnya meningkat. Daging berlebih Pokémon ini hambar namun lezat."
},
stage: "Basic",
attacks: [{
cost: ["Water"],
name: {
ja: "ぶつかる",
'zh-tw': "衝撞",
th: "กระแทก",
id: "Menyeruduk"
},
damage: 20
}, {
cost: ["Water", "Colorless", "Colorless", "Colorless"],
name: {
ja: "スリムスクリュー",
'zh-tw': "纖細螺旋",
th: "สลิมสกรู",
id: "Slim Screw"
},
damage: 120,
effect: {
ja: "このワザは、自分の手札が1枚もないなら、エネルギー1個で使える。",
'zh-tw': "若自己1張手牌都沒有則這個招式只需要1個【水】能量即可使用。",
th: "ท่าต่อสู้นี้ ถ้าบนมือฝ่ายเราไม่มีการ์ดเลยแม้แต่ 1 ใบ สามารถใช้ได้ด้วยพลังงาน[น้ำ] 1 ลูก",
id: "Jika Kartu Pegangan sendiri tidak tersisa 1 lembar pun, serangan ini dapat digunakan dengan 1 Energi {Air}."
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card