1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

76 lines
1.1 KiB
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 '../Cosmic Eclipse'
const card: Card = {
name: {
en: "Absol",
fr: "Absol",
},
illustrator: "Mizue",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
359,
],
hp: 100,
types: [
"Darkness",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Ominous News",
fr: "Mauvais Augure",
},
effect: {
en: "Discard a Special Energy from 1 of your opponent's Pokémon.",
fr: "Défaussez une Énergie spéciale de lun des Pokémon de votre adversaire.",
},
},
{
cost: [
"Darkness",
"Colorless",
],
name: {
en: "Dirty Throw",
fr: "Vilain Lancer",
},
effect: {
en: "Discard a card from your hand. If you can't discard a card, this attack does nothing.",
fr: "Défaussez une carte de votre main. Si vous ne pouvez pas défausser de carte, cette attaque ne fait rien.",
},
damage: 70,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 1,
}
export default card