mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
41
data/E-Card/Best of game/4.ts
Normal file
41
data/E-Card/Best of game/4.ts
Normal file
@ -0,0 +1,41 @@
|
||||
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
|
Reference in New Issue
Block a user