1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 19:09:54 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

53 lines
810 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 '../XY trainer Kit (Latias)'
const card: Card = {
dexId: [380],
set: Set,
name: {
en: "Latias",
fr: "Latias",
es: "Latias",
it: "Latias",
pt: "Latias",
de: "Latias"
},
rarity: "None",
category: "Pokemon",
hp: 100,
types: ["Psychic"],
stage: "Basic",
retreat: 1,
illustrator: "Masakazu Fukuda",
description: {
en: "It can telepathically communicate with people. It changes its appearance using its down that refracts light."
},
attacks: [{
name: {
en: "Psychic Sphere"
},
damage: 20
}, {
name: {
en: "Psychic Prism"
},
damage: "60+",
effect: {
en: "Flip a coin. If heads, this attack does 20 more damage."
}
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}]
}
export default card