mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 08:19:17 +00:00
67
data/Sword & Shield/Fusion Strike/11.ts
Normal file
67
data/Sword & Shield/Fusion Strike/11.ts
Normal file
@ -0,0 +1,67 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Fusion Strike"
|
||||
|
||||
const card: Card = {
|
||||
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
|
Reference in New Issue
Block a user