mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
@ -5,22 +5,24 @@ const card: Card = {
|
||||
name: {
|
||||
en: "Turtwig",
|
||||
},
|
||||
|
||||
illustrator: "Midori Harada",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
387,
|
||||
],
|
||||
|
||||
hp: 60,
|
||||
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -47,16 +49,18 @@ const card: Card = {
|
||||
effect: {
|
||||
en: "If you have Chimchar in play, this attack does 40 damage plus 20 more damage and the Defending Pokémon is now Burned.",
|
||||
},
|
||||
damage: 40,
|
||||
damage: "40+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
value: "+10"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Water",
|
||||
@ -64,9 +68,18 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
description: {
|
||||
en: "It undertakes photosynthesis with its body, making oxygen. The leaf on its head wilts if it is thirsty."
|
||||
},
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
variants: {
|
||||
normal: true,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user