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

54 lines
892 B
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 "../SCA"
const card: Card = {
set: Set,
name: {
'zh-tw': "戰舞郎"
},
illustrator: "Sanosuke Sakuma",
category: "Pokemon",
hp: 90,
types: ["Fighting"],
description: {
'zh-tw': "會旋轉身體使出踢擊。當牠高速旋轉身體時,會直接鑽進地底下。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "循環抽出"
},
effect: {
'zh-tw': "將自己的1張手牌丟棄。然後從自己的牌庫抽出3張卡。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "龍捲風踢"
},
effect: {
'zh-tw': "在這個回合若從手牌使出了「彩豆」則增加80點傷害。"
},
damage: "50+",
cost: ["Fighting", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card