1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +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

53
data-asia/S/S9/041.ts Normal file
View File

@ -0,0 +1,53 @@
import { Card } from "../../../interfaces"
import Set from "../S9"
const card: Card = {
set: Set,
name: {
'zh-tw': "皮皮",
ja: "ピッピ"
},
illustrator: "Yukiko Baba",
category: "Pokemon",
hp: 60,
types: ["Psychic"],
description: {
'zh-tw': "據說如果在滿月的夜晚看見皮皮們聚在一起跳舞, 就能得到幸福。",
ja: "満月の夜 ピッピが 集まって ダンスを 踊るようすを 見ると しあわせに なれると 言われている。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "拍擊",
ja: "はたく"
},
damage: 10,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "魔法射擊",
ja: "マジカルショット"
},
damage: 30,
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
rarity: "Common",
dexId: [35]
}
export default card