1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

72 lines
791 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 '../Dragon'
const card: Card = {
name: {
en: "Dratini",
},
illustrator: "Aya Kusube",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
147,
],
hp: 50,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Dragon Dew",
},
effect: {
en: "Remove 2 damage counters from 1 of your Pokémon (remove 1 if there is only 1).",
},
},
{
cost: [
"Lightning",
],
name: {
en: "Tail Slap",
},
damage: 10,
},
],
weaknesses: [
{
type: "Colorless",
value: "×2"
},
],
resistances: [
{
type: "Grass",
value: "-30"
},
{
type: "Fightning",
value: "-30"
},
],
}
export default card