1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49:18 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

64
data-asia/S/S9/047.ts Normal file
View File

@ -0,0 +1,64 @@
import { Card } from "../../../interfaces"
import Set from "../S9"
const card: Card = {
set: Set,
name: {
'zh-tw': "黑夜魔靈",
ja: "ヨノワール"
},
illustrator: "otumami",
category: "Pokemon",
hp: 160,
types: ["Psychic"],
description: {
'zh-tw': "沒人知道牠是否擁有意識。會從來自靈界的電波中接受指示, 將人和寶可夢帶走。",
ja: "意思が あるのか わかっていない。 霊界からの 電波に 従い 人や ポケモンを 連れ去るのだ。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
'zh-tw': "特殊轉移",
ja: "スペシャルトランス"
},
effect: {
'zh-tw': "在自己的回合時可不限次數使用。選擇1個自己的場上寶可夢身上附加的特殊能量改附於自己的其他寶可夢身上。",
ja: "自分の番に何回でも使える。自分の場のポケモンについている特殊エネルギーを1個選び、自分の別のポケモンにつけ替える。"
}
}],
attacks: [{
name: {
'zh-tw': "靈魂吃食",
ja: "ソウルイート"
},
damage: 120,
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "30"
}],
retreat: 3,
regulationMark: "F",
rarity: "Rare",
dexId: [477]
}
export default card