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

91 lines
1.7 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Ultra Prism'
const card: Card = {
name: {
en: "Darkrai ◇",
fr: "Darkrai ",
},
illustrator: "Naoki Saito",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
491,
],
hp: 160,
types: [
"Darkness",
],
stage: "Basic",
abilities: [
{
type: "Ability",
name: {
en: "Nightmare Star",
fr: "Étoile Cauchemar",
},
effect: {
en: "When you play this Pokémon from your hand onto your Bench during your turn, you may attach 2 Darkness Energy cards from your hand to it.",
fr: "Lorsque vous jouez ce Pokémon de votre main sur votre Banc pendant votre tour, vous pouvez lui attacher 2 cartes Énergie Darkness de votre main.",
},
},
],
attacks: [
{
cost: [
"Darkness",
"Darkness",
"Darkness",
"Darkness",
],
name: {
en: "Abyssal Sleep",
fr: "Règle pour les cartes (Prisme Étoile)",
},
effect: {
en: "Your opponent's Active Pokémon is now Asleep. Your opponent flips 2 coins instead of 1 between turns. If either of them is tails, that Pokémon is still Asleep.",
},
damage: 120,
},
{
cost: [
"Darkness",
"Darkness",
"Darkness",
"Darkness",
],
name: {
fr: "Sommeil Abyssal",
},
effect: {
fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi. Votre adversaire lance 2 pièces au lieu dune entre chaque tour. Sil obtient au moins un côté pile, le Pokémon reste Endormi.",
},
damage: 120,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 2,
}
export default card