1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

78 lines
1.4 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Team Rocket Returns'
const card: Card = {
name: {
en: "Rocket's Sneasel ex",
de: "Rockets Sniebel ex"
},
illustrator: "Ryo Ueda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
215,
],
hp: 90,
types: [
"Darkness",
],
suffix: "EX",
attacks: [
{
cost: [
"Darkness",
],
name: {
en: "Drag Off",
de: "Drag Off"
},
effect: {
en: "Before doing damage, you may switch 1 of your opponent's Benched Pokémon with the Defending Pokémon. If you do, this attack does 10 damage to the new Defending Pokémon. Your opponent chooses the Defending Pokémon to switch.",
de: "Before doing damage, you may switch 1 of your opponent's Benched Pokémon with the Defending Pokémon. If you do, this attack does 10 damage to the new Defending Pokémon. Your opponent chooses the Defending Pokémon to switch."
},
damage: 10,
},
{
cost: [
"Darkness",
"Darkness",
"Colorless",
],
name: {
en: "Dark Ring",
de: "Dark Ring"
},
effect: {
en: "Does 30 damage plus 10 more damage for each of your Darkness Pokémon in play.\"",
de: "Does 30 damage plus 10 more damage for each of your Pokémon in play."
},
damage: "30+",
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-30"
},
],
}
export default card