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

52
data-asia/S/SC1b/156.ts Normal file
View File

@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../SC1b"
const card: Card = {
set: Set,
name: {
'zh-tw': "白蓬蓬V"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 180,
types: ["Grass"],
stage: "Basic",
suffix: "V",
abilities: [{
type: "Ability",
name: {
'zh-tw': "歡樂配對"
},
effect: {
'zh-tw': "在自己的回合當從手牌將這張卡放置於備戰區時可使用1次。從自己的棄牌區選擇1張支援者卡在給對手看過後加入手牌。"
}
}],
attacks: [{
name: {
'zh-tw': "飄舞"
},
effect: {
'zh-tw': "若希望,將這隻寶可夢與附加的卡,全部放回自己的牌庫並重洗。"
},
damage: 50,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card