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

59 lines
1.0 KiB
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 "../SVD"
const card: Card = {
set: Set,
name: {
'zh-tw': "怒鸚哥"
},
illustrator: "Oswaldo KATO",
category: "Pokemon",
hp: 70,
types: ["Colorless"],
description: {
'zh-tw': "綠色羽毛的怒鸚哥勢力最為龐大。在覓食時段的 早晨和夜晚會非常吵鬧。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "呼朋引伴"
},
effect: {
'zh-tw': "從自己的牌庫選擇最多2張【基礎】寶可夢卡放置於備戰區。並且重洗牌庫。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "飛翔"
},
effect: {
'zh-tw': "擲1次硬幣若為反面則這個招式失敗。若為正面則在下個對手的回合這隻寶可夢不會受到招式的傷害與效果的影響。"
},
damage: 60,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "G"
}
export default card