1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 16:39: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/SV-P/046.ts Normal file
View File

@ -0,0 +1,46 @@
import { Card } from "../../../interfaces"
import Set from "../SV-P"
const card: Card = {
set: Set,
name: {
'zh-tw': "皮寶寶"
},
illustrator: "Tika Matsuno",
category: "Pokemon",
hp: 30,
types: ["Psychic"],
description: {
'zh-tw': "有著如同星星一般的輪廓。因為這樣的外型,人們相信 牠是乘著流星而來的。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "亮亮祈禱"
},
effect: {
'zh-tw': "從自己的牌庫選擇最多2張基本能量卡在給對手看過後加入手牌。並且重洗牌庫。"
}
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 0,
regulationMark: "G"
}
export default card