1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +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

64 lines
1010 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
dexId: [381],
set: Set,
name: {
en: "Latios",
fr: "Latios",
es: "Latios",
it: "Latios",
pt: "Latios",
de: "Latios"
},
rarity: "Rare",
category: "Pokemon",
hp: 130,
types: ["Dragon"],
stage: "Basic",
retreat: 2,
regulationMark: "E",
illustrator: "hatachu",
description: {
en: "It understands human speech and is highly intelligent. It is a tender Pokémon that dislikes fighting."
},
abilities: [{
type: "Ability",
name: {
en: "Blue Assist"
},
effect: {
en: "Once during your turn, you may attach a Psychic Energy card from your hand to 1 of your Latias."
}
}],
attacks: [{
cost: ["Water", "Water", "Psychic", "Colorless"],
name: {
en: "Luster Purge"
},
damage: 210,
effect: {
en: "Discard 2 Energy from this Pokémon."
}
}],
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card