1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-18 23:49:49 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

71
data/XY/Promos/XY194.ts Normal file
View File

@ -0,0 +1,71 @@
import { Card } from '../../../interfaces'
import Set from '../Promos'
const card: Card = {
name: {
en: "Darkrai",
},
illustrator: "kawayoo",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
491,
],
hp: 110,
types: [
"Darkness",
],
stage: "Basic",
attacks: [
{
cost: [
"Darkness",
"Colorless",
],
name: {
en: "Dark Cutter",
},
damage: 30,
},
{
cost: [
"Darkness",
"Darkness",
"Colorless",
],
name: {
en: "Abyssal Sleep",
},
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: 80,
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
}
export default card