1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 11:30:46 +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,76 @@
import { Card } from '../../../interfaces'
import Set from '../Team Rocket Returns'
const card: Card = {
name: {
en: "Rocket's Entei ex",
},
illustrator: "Ryo Ueda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
244,
],
hp: 100,
types: [
"Darkness",
],
suffix: "EX",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Dark Condition",
},
effect: {
en: "As long as Rocket's Entei ex has any Darkness Energy attached to it, Rocket's Entei ex has no Weakness.\"",
},
},
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Energy Link",
},
effect: {
en: "Search your discard pile for an Energy card and attach it to Rocket's Entei ex.",
},
damage: 10,
},
{
cost: [
"Fire",
"Fire",
"Colorless",
],
name: {
en: "Volcanic Ash",
},
effect: {
en: "Discard 2 Energy attached to Rocket's Entei ex and then choose 1 of your opponent's Pok<6F><6B>mon. This attack does 60 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
}
export default card