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

61 lines
1.5 KiB
TypeScript
Raw Permalink 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 "../S12a"
const card: Card = {
set: Set,
name: {
'zh-tw': "洗翠 頑皮雷彈V",
th: "ฮิซุย มารุมายน์V",
ja: "ヒスイ マルマインV"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 210,
types: ["Grass"],
stage: "Basic",
suffix: "V",
attacks: [{
name: {
'zh-tw': "煩躁炸彈",
th: "ระเบิดหัวร้อน",
ja: "かんしゃくボム"
},
effect: {
'zh-tw': "造成這隻寶可夢處於特殊狀態的數量×100點傷害。",
th: "แดเมจจะเท่ากับจำนวนสภาวะผิดปกติที่โปเกมอนนี้ได้รับอยู่ x100",
ja: "このポケモンが受けている特殊状態の数×100ダメージ。"
},
damage: "100×"
}, {
name: {
'zh-tw': "日光射擊",
th: "โซลาร์ชูต",
ja: "ソーラーシュート"
},
effect: {
'zh-tw': "將這隻寶可夢身上附加的能量全部丟棄。",
th: "ทิ้งพลังงานที่ติดอยู่กับโปเกมอนนี้ทั้งหมดที่ตำแหน่งทิ้งการ์ด",
ja: "このポケモンについているエネルギーを、すべてトラッシュする。"
},
damage: 120,
cost: ["Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
rarity: "Double rare"
}
export default card