1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-10 07:09:54 +00:00

44 lines
612 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Dartrix"
},
illustrator: "Mizue",
rarity: "Two Diamond",
category: "Pokemon",
hp: 80,
types: ["Grass"],
evolveFrom: {
en: "Rowlet"
},
description: {
en: "This narcissistic Pokémon is a clean freak. If you don't groom it diligently, it may stop listening to you."
},
stage: "Stage1",
attacks: [{
name: {
en: "Razor Wing"
},
damage: 30,
cost: ["Grass"]
}],
weaknesses: [{
type: "Fire",
value: "+20"
}],
retreat: 1
}
export default card