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

51 lines
788 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 "../S11"
const card: Card = {
set: Set,
name: {
'zh-tw': "長耳兔"
},
illustrator: "Ryuta Fuse",
category: "Pokemon",
hp: 110,
types: ["Colorless"],
description: {
'zh-tw': "總是注意著周圍的狀況。危險逼近時,就會給對手 奉上破壞力十足的踢腿。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "踢飛"
},
damage: 30,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "二連踢"
},
effect: {
'zh-tw': "擲2次硬幣造成正面出現的次數×100點傷害。"
},
damage: "100×",
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "F"
}
export default card