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

47 lines
659 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 "../S-P"
const card: Card = {
set: Set,
name: {
'zh-tw': "草苗龜"
},
illustrator: "Narumi Sato",
category: "Pokemon",
hp: 80,
types: ["Grass"],
description: {
'zh-tw': "用全身進行光合作用,製造氧氣。當口渴的時候,頭上的葉子就會枯萎。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "咬住"
},
damage: 10,
cost: ["Grass"]
}, {
name: {
'zh-tw': "魯莽頭擊"
},
damage: 20,
cost: ["Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "F"
}
export default card