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

57 lines
852 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 "../SC2b"
const card: Card = {
set: Set,
name: {
'zh-tw': "盔甲鳥"
},
illustrator: "NC Empire",
category: "Pokemon",
hp: 120,
types: ["Metal"],
description: {
'zh-tw': "每次成長都會脫落的羽毛又薄又銳利。古時的戰士將之當作刀來使用。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "金屬武裝"
},
effect: {
'zh-tw': "若這隻寶可夢身上附有「寶可夢道具」則增加40點傷害。"
},
damage: "10+",
cost: ["Metal"]
}, {
name: {
'zh-tw': "利刃之風"
},
damage: 80,
cost: ["Metal", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "D"
}
export default card