1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-13 13:25:10 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Eevee Grove/051.ts
2025-07-08 11:31:53 +02:00

35 lines
522 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Eevee Grove"
const card: Card = {
set: Set,
name: {
en: "Dratini"
},
illustrator: "Naoyo Kimura",
rarity: "One Diamond",
category: "Pokemon",
hp: 60,
types: ["Dragon"],
description: {
en: "It sheds many layers of skin as it grows larger.\nDuring this process, it is protected by a rapid\nwaterfall."
},
stage: "Basic",
attacks: [{
name: {
en: "Beat"
},
damage: 20,
cost: ["Colorless"]
}],
retreat: 1
}
export default card