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

63 lines
1.9 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 "../S12"
const card: Card = {
set: Set,
name: {
'zh-tw': "洗翠 風速狗V",
th: "ฮิซุย วินดีV",
ja: "ヒスイ ウインディV"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 230,
types: ["Fighting"],
stage: "Basic",
suffix: "V",
abilities: [{
type: "Ability",
name: {
'zh-tw': "震怒奮鬥",
th: "สิงโตผยอง",
ja: "ししふんじん"
},
effect: {
'zh-tw': "在自己的回合時可不限次數使用。選擇1個自己的場上寶可夢身上附加的【鬥】能量改附於這隻寶可夢身上。",
th: "ใช้กี่ครั้งก็ได้ในเทิร์นฝ่ายเรา เลือกพลังงาน[ต่อสู้]ที่ติดอยู่กับโปเกมอนบนกระดานฝ่ายเรา 1 ลูก ย้ายไปติดกับโปเกมอนนี้",
ja: "自分の番に何回でも使える。自分の場のポケモンについているエネルギーを1個選び、このポケモンにつけ替える。"
}
}],
attacks: [{
name: {
'zh-tw': "岩石子彈",
th: "ร็อกบูลเล็ต",
ja: "ロックバレット"
},
effect: {
'zh-tw': "增加這隻寶可夢身上附加的【鬥】能量的數量×30點傷害。",
th: "แดเมจจะเพิ่มตามจำนวนพลังงาน[ต่อสู้]ที่ติดอยู่กับโปเกมอนนี้ x30",
ja: "このポケモンについているエネルギーの数×30ダメージ追加。"
},
damage: "90",
cost: ["Colorless", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "F",
rarity: "Double rare"
}
export default card