1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 10:59:54 +00:00

71 lines
1000 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 '../Dragons Exalted'
const card: Card = {
name: {
en: "Deino",
fr: "Solochi",
},
illustrator: "kawayoo",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
633,
],
hp: 60,
types: [
"Dragon",
],
stage: "Basic",
attacks: [
{
cost: [
"Darkness",
],
name: {
en: "Deep Growl",
fr: "Rugissement Profond",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.",
},
},
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Power Breath",
fr: "Souffle Puissant",
},
effect: {
en: "Discard an Energy attached to this Pokémon.",
fr: "Défaussez une Énergie attachée à ce Pokémon.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Dragon",
value: "×2"
},
],
retreat: 2,
}
export default card