1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

51 lines
737 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 "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "鐵殼蛹"
},
illustrator: "Naoyo Kimura",
category: "Pokemon",
hp: 80,
types: ["Grass"],
description: {
'zh-tw': "雖然掛在樹上幾乎一動也不動,但體內正為了進化而忙碌準備著。證據就是牠的身體會變得很熱。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "蛻皮"
},
effect: {
'zh-tw': "將這隻寶可夢恢復「30」HP。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "蟲咬"
},
damage: 20,
cost: ["Grass"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 3,
regulationMark: "D"
}
export default card