mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
41 lines
634 B
TypeScript
41 lines
634 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Best of game'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Rocket’s Sneasel"
|
||
},
|
||
|
||
illustrator: "Katsura Tabata",
|
||
rarity: "None",
|
||
category: "Pokemon",
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
cost: ["Darkness"],
|
||
|
||
name: {
|
||
en: "Entrap"
|
||
},
|
||
|
||
effect: {
|
||
en: "The Defending Pokémon can’t retreat during your opponent’s 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 |