1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

45 lines
699 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 "../SV6a"
const card: Card = {
set: Set,
name: {
'zh-tw': "卡璞・哞哞"
},
illustrator: "GOSSAN",
category: "Pokemon",
hp: 140,
types: ["Grass"],
description: {
'zh-tw': "拔出巨大的樹木,轟轟地來回揮舞。 會讓草木茂盛生長,再吸收其中的能量。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "木槌"
},
effect: {
'zh-tw': "這隻寶可夢也受到30點傷害。"
},
damage: 220,
cost: ["Grass", "Grass", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 3,
regulationMark: "H",
rarity: "Rare"
}
export default card