1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09: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

46
data-asia/SV/SV6/045.ts Normal file
View File

@ -0,0 +1,46 @@
import { Card } from "../../../interfaces"
import Set from "../SV6"
const card: Card = {
set: Set,
name: {
ja: "ピッピ",
'zh-tw': "皮皮"
},
category: "Pokemon",
rarity: "Common",
illustrator: "Sanosuke Sakuma",
dexId: [35],
hp: 60,
types: ["Psychic"],
description: {
ja: "満月の 晩に 集まって 仲間と ダンス。 その周囲は 異常な 磁場に 包まれる。",
'zh-tw': "在月圓之夜聚集, 和夥伴一起跳舞。 周圍被異常的磁場包圍著。"
},
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
ja: "ムーンキック",
'zh-tw': "月亮踢"
},
damage: 40
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card