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

50
data-asia/S/S4a/015.ts Normal file
View File

@ -0,0 +1,50 @@
import { Card } from "../../../interfaces"
import Set from "../S4a"
const card: Card = {
set: Set,
name: {
'zh-tw': "白蓬蓬"
},
illustrator: "Mina Nakai",
category: "Pokemon",
hp: 80,
types: ["Grass"],
description: {
'zh-tw': "棉絮的種子營養豐富。牠會藉由風散播種子,讓草木和寶可夢變得活力十足。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "恩澤棉絮"
},
effect: {
'zh-tw': "從自己的牌庫選擇最多3張【草】能量卡以任意方式附於備戰寶可夢身上。並且重洗牌庫。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "樹葉"
},
damage: 30,
cost: ["Grass"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card