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

53 lines
757 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 "../SC1D"
const card: Card = {
set: Set,
name: {
'zh-tw': "稚山雀"
},
illustrator: "Akira Komayama",
category: "Pokemon",
hp: 60,
types: ["Colorless"],
description: {
'zh-tw': "性情勇敢,無論多強的敵人都勇於挑戰。即使在敵人的反擊中被打敗,也能從中得到鍛鍊。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "羽擊"
},
damage: 10,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "滑翔"
},
damage: 30,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "D"
}
export default card