1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 01:37:52 +00:00
Florian Bouillon d4be6fa84f
fix: Add Diamond & Pearl French translations (#179)
* fix: Add the two first sets

Signed-off-by: Avior <github@avior.me>

* fix: Add DP, DP Black Star and Mysterious Treasures

Signed-off-by: Avior <github@avior.me>
2021-11-22 18:11:03 +00:00

80 lines
1.6 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../DP Black Star Promos'
const card: Card = {
name: {
en: "Darkrai",
fr: "Darkrai"
},
illustrator: "Kouki Saitou",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
491,
],
hp: 80,
types: [
"Darkness",
],
stage: "Basic",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Spacial Rend",
fr: "Spatio-Rift"
},
effect: {
en: "Search your deck for a Stadium card, show it to your opponent, and put it into your hand. Shuffle your deck afterward. If there is any Stadium card in play, discard it.",
fr: "Choisissez dans votre deck une carte Stade, montrez-la à votre adversaire et placez-la dans votre main. Ensuite, mélangez votre deck. Si une carte Stade est en jeu, défaussez-la."
},
damage: 10,
},
{
cost: [
"Metal",
"Metal",
"Metal",
],
name: {
en: "Roar of Time",
fr: "Hurle-Temps"
},
effect: {
en: "Search your discard pile for 3 Pokémon, show them to your opponent, and put them on top of your deck. Shuffle your deck afterward. (If you don't have 3 Pokémon in your discard pile, this attack does nothing.)",
fr: "Choisissez 3 Pokémon dans votre pile de défausse. Montrez-les à votre adversaire et placez-les sur le dessus de votre deck. Ensuite, mélangez votre deck. (Si vous ne possédez pas 3 Pokémon dans votre pile de défausse, cette attaque est sans effet.)"
},
damage: 80
},
],
weaknesses: [
{
type: "Fighting",
value: "+20"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
}
export default card