1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

50 lines
796 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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