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

57 lines
1.2 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 "../S12"
const card: Card = {
set: Set,
name: {
'zh-tw': "洗翠 風速狗V",
ja: "ヒスイ ウインディV"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 230,
types: ["Fighting"],
stage: "Basic",
suffix: "V",
abilities: [{
type: "Ability",
name: {
'zh-tw': "震怒奮鬥",
ja: "ししふんじん"
},
effect: {
'zh-tw': "在自己的回合時可不限次數使用。選擇1個自己的場上寶可夢身上附加的【鬥】能量改附於這隻寶可夢身上。",
ja: "自分の番に何回でも使える。自分の場のポケモンについているエネルギーを1個選び、このポケモンにつけ替える。"
}
}],
attacks: [{
name: {
'zh-tw': "岩石子彈",
ja: "ロックバレット"
},
effect: {
'zh-tw': "增加這隻寶可夢身上附加的【鬥】能量的數量×30點傷害。",
ja: "このポケモンについているエネルギーの数×30ダメージ追加。"
},
damage: "90",
cost: ["Colorless", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "F"
}
export default card