1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00

53 lines
894 B
TypeScript
Raw Permalink 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 "../S9"
const card: Card = {
set: Set,
name: {
'zh-tw': "草苗龜",
ja: "ナエトル"
},
illustrator: "Narumi Sato",
category: "Pokemon",
hp: 80,
types: ["Grass"],
description: {
'zh-tw': "用全身進行光合作用,製造氧氣。當口渴的時候, 頭上的葉子就會枯萎。",
ja: "全身で 光合成を して 酸素を 作る。 のどが 渇くと 頭の 葉っぱが しおれてしまう。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "咬住",
ja: "かみつく"
},
damage: 10,
cost: ["Grass"]
}, {
name: {
'zh-tw': "魯莽頭擊",
ja: "とびだしヘッド"
},
damage: 20,
cost: ["Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "F",
rarity: "Common",
dexId: [387]
}
export default card