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

53 lines
940 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 "../S10P"
const card: Card = {
set: Set,
name: {
'zh-tw': "洗翠 狙射樹梟"
},
illustrator: "Kouki Saitou",
category: "Pokemon",
hp: 160,
types: ["Fighting"],
description: {
'zh-tw': "為抵抗洗翠的嚴寒氣候,羽毛的芯中含有空氣,因而能夠防寒。 由此可見環境會對進化產生影響。"
},
stage: "Stage2",
attacks: [{
name: {
'zh-tw': "深入鉤爪"
},
effect: {
'zh-tw': "造成對手的戰鬥寶可夢身上放置的傷害指示物的數量×30點傷害。"
},
damage: "30×"
}, {
name: {
'zh-tw': "筆直箭"
},
effect: {
'zh-tw': "對手的1隻寶可夢受到80點傷害。[在備戰區不計算弱點・抵抗力。]"
},
cost: ["Fighting", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 2,
regulationMark: "F"
}
export default card