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

68 lines
1.3 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 "../S9a"
const card: Card = {
set: Set,
name: {
'zh-tw': "貓頭夜鷹",
ja: "ヨルノズク"
},
illustrator: "Nisota Niso",
category: "Pokemon",
hp: 100,
types: ["Colorless"],
description: {
'zh-tw': "雙眼有著特殊的構造,只要有些微的光線,即使在黑暗中 也能看得像白天一樣清楚。",
ja: "特殊な つくりの 両目は わずかな 光さえ あれば 暗闇でも 昼のように 見える。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "靜默之翼",
ja: "サイレントウイング"
},
effect: {
'zh-tw': "查看對手的手牌。",
ja: "相手の手札を見る。"
},
damage: 50,
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "空氣斬",
ja: "エアスラッシュ"
},
effect: {
'zh-tw': "選擇1個這隻寶可夢身上附加的能量將其丟棄。",
ja: "このポケモンについているエネルギーを1個選び、トラッシュする。"
},
damage: 120,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "30"
}],
retreat: 1,
regulationMark: "F",
rarity: "Uncommon",
dexId: [164]
}
export default card