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

63
data-asia/S/S9/044.ts Normal file
View File

@ -0,0 +1,63 @@
import { Card } from "../../../interfaces"
import Set from "../S9"
const card: Card = {
set: Set,
name: {
'zh-tw': "念力土偶",
ja: "ネンドール"
},
illustrator: "Kazuma Koda",
category: "Pokemon",
hp: 110,
types: ["Psychic"],
description: {
'zh-tw': "似乎是由2萬年前的古代人製作的泥偶 蛻變而來的謎之寶可夢。",
ja: "2万年前の 古代人が つくった 泥人形から 生まれたらしい 謎の ポケモン。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "迴轉攻擊",
ja: "かいてんアタック"
},
damage: 40,
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "巧合泥偶",
ja: "きぐうなどぐう"
},
effect: {
'zh-tw': "若自己的備戰寶可夢與對手的備戰寶可夢數量相同則增加90點傷害。",
ja: "自分のベンチポケモンと相手のベンチポケモンの数が同じなら、90ダメージ追加。"
},
damage: "90",
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "30"
}],
retreat: 2,
regulationMark: "F",
rarity: "Uncommon",
dexId: [344]
}
export default card