mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
41 lines
699 B
TypeScript
41 lines
699 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Best of game'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Rocket’s Scizor"
|
||
},
|
||
|
||
illustrator: "K. Hoshiba",
|
||
rarity: "None",
|
||
category: "Pokemon",
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
cost: ["Colorless"],
|
||
|
||
name: {
|
||
en: "Focus"
|
||
},
|
||
|
||
effect: {
|
||
en: "During your next turn, Rocket’s Scizor’s Agility attack’s damage is doubled."
|
||
}
|
||
}, {
|
||
cost: ["Metal", "Colorless", "Colorless"],
|
||
|
||
name: {
|
||
en: "Agility"
|
||
},
|
||
|
||
damage: 20,
|
||
|
||
effect: {
|
||
en: "Flip a coin. If heads, during your opponent’s next turn, prevent all effects of attacks, including damage, done to Rocket’s Scizor."
|
||
}
|
||
}]
|
||
}
|
||
|
||
export default card |