1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

68 lines
1.1 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
dexId: [542],
set: Set,
name: {
en: "Leavanny",
fr: "Manternel",
es: "Leavanny",
it: "Leavanny",
pt: "Leavanny",
de: "Matrifol"
},
rarity: "Rare",
category: "Pokemon",
hp: 130,
types: ["Grass"],
evolveFrom: {
en: "Swadloon",
fr: "Couverdure",
es: "Swadloon",
it: "Swadloon",
pt: "Swadloon",
de: "Folikon"
},
stage: "Stage2",
retreat: 1,
regulationMark: "E",
illustrator: "kodama",
description: {
en: "It keeps its eggs warm with heat from fermenting leaves. It also uses leaves to make warm wrappings for Sewaddle."
},
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
en: "Healing Circle"
},
effect: {
en: "Heal all damage from each of your Benched Pokémon. If you healed any damage in this way, shuffle this Pokémon and all attached cards into your deck."
}
}, {
cost: ["Grass", "Colorless", "Colorless"],
name: {
en: "Razor Leaf"
},
damage: 120
}],
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card