1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-12 15:59:18 +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

View File

@ -0,0 +1,77 @@
import { Card } from '../../../interfaces'
import Set from '../Team Rocket Returns'
const card: Card = {
name: {
en: "Rocket's Suicune ex",
},
illustrator: "Ryo Ueda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
245,
],
hp: 100,
types: [
"Darkness",
],
suffix: "EX",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Dark and Clear",
},
effect: {
en: "As long as Rocket's Suicune ex has any Darkness Energy attached to it, Rocket's Suicune ex can't be affected by any Special Conditions.\"",
},
},
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Icy Wind",
},
effect: {
en: "The Defending Pokémon is now Asleep.",
},
damage: 10,
},
{
cost: [
"Water",
"Water",
"Colorless",
],
name: {
en: "Hyper Splash",
},
effect: {
en: "If the Defending Pokémon is a Stage 2 Evolved Pokémon, this attack does 50 damage plus 40 more damage.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
}
export default card