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

56
data-asia/S/S4/052.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../S4"
const card: Card = {
set: Set,
name: {
'zh-tw': "霜奶仙"
},
illustrator: "Kagemaru Himeno",
category: "Pokemon",
hp: 90,
types: ["Psychic"],
description: {
'zh-tw': "牠會把自己用鮮奶油裝飾過的樹果送給自己信任的訓練家。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "甜蜜平分"
},
effect: {
'zh-tw': "在自己的回合當從手牌使出這張卡並完成進化時可使用1次。雙方玩家各從牌庫抽出1張卡。"
}
}],
attacks: [{
name: {
'zh-tw': "奇跡閃耀"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【混亂】。"
},
damage: 60,
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card