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

51 lines
809 B
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 "../Sc1a"
const card: Card = {
set: Set,
name: {
'zh-tw': "飛腿郎"
},
illustrator: "Shigenori Negishi",
category: "Pokemon",
hp: 120,
types: ["Fighting"],
description: {
'zh-tw': "擁有卓越的平衡感。無論處於什麼姿勢都可以連續施展踢擊的厲害角色。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "下盤踢"
},
damage: 40,
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "聯合攻擊"
},
effect: {
'zh-tw': "若自己的備戰區有「快拳郎」則增加80點傷害。"
},
damage: "80+",
cost: ["Fighting", "Fighting", "Colorless"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card