1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-17 13:59:55 +00:00

73 lines
953 B
TypeScript
Raw 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 '../Emerging Powers'
const card: Card = {
name: {
en: "Leavanny",
fr: "Manternel",
},
illustrator: "Masakazu Fukuda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
542,
],
hp: 130,
types: [
"Grass",
],
evolveFrom: {
en: "Swadloon",
fr: "Couverdure",
},
stage: "Stage2",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Slash",
fr: "Tranche",
},
damage: 30,
},
{
cost: [
"Grass",
"Grass",
"Colorless",
],
name: {
en: "Triple Cutter",
fr: "Triple Lame",
},
effect: {
en: "Flip 3 coins. This attack does 60 damage times the number of heads.",
fr: "Lancez 3 pièces. Cette attaque inflige 60 dégâts multipliés par le nombre de côtés face.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 1,
}
export default card