1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

70 lines
2.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SV2P"
const card: Card = {
set: Set,
name: {
ja: "ミガルーサ",
'zh-tw': "輕身鱈",
th: "มิกาลูซา",
id: "Veluza"
},
illustrator: "Anesaki Dynamic",
rarity: "Rare",
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