1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00

67 lines
840 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 '../Legendary Treasures'
const card: Card = {
name: {
en: "Leavanny",
},
illustrator: "match",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
542,
],
hp: 130,
types: [
"Grass",
],
evolveFrom: {
en: "Swadloon",
},
stage: "Stage2",
abilities: [
{
type: "Ability",
name: {
en: "Leaf Tailor",
},
effect: {
en: "Each of your Pokémon that has any Energy attached to it has no Weakness.",
},
},
],
attacks: [
{
cost: [
"Grass",
"Colorless",
"Colorless",
],
name: {
en: "Cutting Arm",
},
effect: {
en: "Flip 2 coins. This attack does 20 more damage for each heads.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
}
export default card