1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

55 lines
1.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 "../S10a"
const card: Card = {
set: Set,
name: {
th: "ฮิซุย มารุมายน์V",
'zh-tw': "洗翠 頑皮雷彈V"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 210,
types: ["Grass"],
stage: "Basic",
suffix: "V",
attacks: [{
name: {
th: "ระเบิดหัวร้อน",
'zh-tw': "煩躁炸彈"
},
effect: {
th: "แดเมจจะเท่ากับจำนวนสภาวะผิดปกติที่โปเกมอนนี้ได้รับอยู่ x100",
'zh-tw': "造成這隻寶可夢處於特殊狀態的數量×100點傷害。"
},
damage: "100×"
}, {
name: {
th: "โซลาร์ชูต",
'zh-tw': "日光射擊"
},
effect: {
th: "ทิ้งพลังงานที่ติดอยู่กับโปเกมอนนี้ทั้งหมดที่ตำแหน่งทิ้งการ์ด",
'zh-tw': "將這隻寶可夢身上附加的能量全部丟棄。"
},
damage: 120,
cost: ["Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "F"
}
export default card