1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-11 15:45:14 +00:00
Files
cards-database/data/E-Card/Best of game/5.ts
2021-10-18 11:59:30 +02:00

41 lines
634 B
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 '../Best of game'
const card: Card = {
set: Set,
name: {
en: "Rockets Sneasel"
},
illustrator: "Katsura Tabata",
rarity: "None",
category: "Pokemon",
stage: "Basic",
attacks: [{
cost: ["Darkness"],
name: {
en: "Entrap"
},
effect: {
en: "The Defending Pokémon cant retreat during your opponents next turn."
}
}, {
cost: ["Colorless", "Colorless"],
name: {
en: "Continuous Scratch"
},
damage: "10×",
effect: {
en: "Flip 4 coins. This attack does 10 damage times the number of heads."
}
}]
}
export default card