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

65 lines
622 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../DP Black Star Promos'
const card: Card = {
name: {
en: "Turtwig",
},
illustrator: "Masakazu Fukuda",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
387,
],
hp: 60,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
name: {
en: "Tackle",
},
damage: 10,
},
{
cost: [
"Grass",
],
name: {
en: "Razor Leaf",
},
damage: 20,
},
],
weaknesses: [
{
type: "Fire",
value: "+10"
},
],
resistances: [
{
type: "Water",
value: "-20"
},
],
}
export default card