mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
84 lines
1.6 KiB
TypeScript
84 lines
1.6 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Team Rocket Returns'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Rocket's Entei ex",
|
||
de: "Rockets 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",
|
||
de: "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.\"",
|
||
de: "As long as Rocket's Entei ex has any Energy attached to it, Reocket's Entei ex has no Weakness."
|
||
},
|
||
},
|
||
],
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Energy Link",
|
||
de: "Energy Link"
|
||
},
|
||
effect: {
|
||
en: "Search your discard pile for an Energy card and attach it to Rocket's Entei ex.",
|
||
de: "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",
|
||
de: "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.)",
|
||
de: "Discard 2 Energy attached to Rocket's Entei ex and then choose 1 of your opponent's Poké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
|