mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 08:59:18 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
68
data-asia/S/S9a/056.ts
Normal file
68
data-asia/S/S9a/056.ts
Normal file
@ -0,0 +1,68 @@
|
||||
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
|
Reference in New Issue
Block a user