1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00
Florian Bouillon ffdd3b4656
fix: Add Base serie translations (#161)
Signed-off-by: Avior <github@avior.me>
2021-11-12 17:07:41 +01:00

55 lines
646 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Base Set'
const card: Card = {
name: {
en: "Dratini",
fr: "Minidraco"
},
illustrator: "Ken Sugimori",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
147,
],
hp: 40,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Pound",
fr: "Écras' Face"
},
damage: 10,
},
],
resistances: [
{
type: "Psychic",
value: "-30"
},
],
description: {
fr: "Longtemps considéré comme légendaire, une colonie fut découverte dans les océans."
}
}
export default card