1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +00:00

Added Best of games (#108)

Signed-off-by: Avior <github@avior.me>
This commit is contained in:
2021-10-18 11:59:30 +02:00
committed by GitHub
parent bf27f42720
commit 2fc22cc4a5
9 changed files with 348 additions and 0 deletions

View File

@ -0,0 +1,41 @@
import { Card } from '../../../interfaces'
import Set from '../Best of game'
const card: Card = {
set: Set,
name: {
en: "Rockets Scizor"
},
illustrator: "K. Hoshiba",
rarity: "None",
category: "Pokemon",
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
en: "Focus"
},
effect: {
en: "During your next turn, Rockets Scizors Agility attacks damage is doubled."
}
}, {
cost: ["Metal", "Colorless", "Colorless"],
name: {
en: "Agility"
},
damage: 20,
effect: {
en: "Flip a coin. If heads, during your opponents next turn, prevent all effects of attacks, including damage, done to Rockets Scizor."
}
}]
}
export default card