mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 14:52:09 +00:00
* Added basic translation IT will need a second checkup by another source as attacks are not correcly ordered Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net> * Removed bugged file Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
74 lines
961 B
TypeScript
74 lines
961 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Legendary Treasures'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Darkrai-EX",
|
||
},
|
||
|
||
illustrator: "Shizurow",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
dexId: [
|
||
491,
|
||
],
|
||
|
||
hp: 180,
|
||
|
||
types: [
|
||
"Darkness",
|
||
],
|
||
|
||
suffix: "EX",
|
||
|
||
abilities: [
|
||
{
|
||
type: "Ability",
|
||
name: {
|
||
en: "Dark Cloak",
|
||
},
|
||
effect: {
|
||
en: "Each of your Pokémon that has any Darkness Energy attached to it has no Retreat Cost.",
|
||
},
|
||
},
|
||
],
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Darkness",
|
||
"Darkness",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Night Spear",
|
||
},
|
||
effect: {
|
||
en: "Does 30 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||
},
|
||
damage: 90,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
resistances: [
|
||
{
|
||
type: "Psychic",
|
||
value: "-20"
|
||
},
|
||
],
|
||
|
||
retreat: 2
|
||
}
|
||
|
||
export default card
|