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

75 lines
1.3 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 '../Guardians Rising'
const card: Card = {
name: {
en: "Absol",
fr: "Absol",
},
illustrator: "Anesaki Dynamic",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
359,
],
hp: 100,
types: [
"Darkness",
],
stage: "Basic",
attacks: [
{
cost: [
"Darkness",
],
name: {
en: "Future Sight",
fr: "Prescience",
},
effect: {
en: "Look at the top 4 cards of either player's deck and put them back in any order.",
fr: "Regardez les 4 cartes du dessus du deck de lun des joueurs et replacez-les dans lordre de votre choix.",
},
},
{
cost: [
"Darkness",
"Colorless",
],
name: {
en: "Doom News",
fr: "Nouvelles Sinistres",
},
effect: {
en: "Put all Energy attached to this Pokémon into your hand. At the end of your opponent's next turn, the Defending Pokémon will be Knocked Out.",
fr: "Placez toutes les Énergies attachées à ce Pokémon dans votre main. À la fin du prochain tour de votre adversaire, le Pokémon Défenseur sera K.O.",
},
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 1,
}
export default card