mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
74 lines
1.1 KiB
TypeScript
74 lines
1.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Rising Rivals'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Scizor 4",
|
||
fr: "Cizayox Niv. 49",
|
||
de: "Scherox 4"
|
||
},
|
||
illustrator: "Kouki Saitou",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
212,
|
||
],
|
||
hp: 80,
|
||
types: [
|
||
"Grass",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Grass",
|
||
],
|
||
name: {
|
||
en: "Cut",
|
||
fr: "Coupe",
|
||
de: "Zerschneider"
|
||
},
|
||
|
||
damage: 20,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Grass",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Crushing Blow",
|
||
fr: "Coup écrasant",
|
||
de: "Brechschlag"
|
||
},
|
||
effect: {
|
||
en: "Flip a coin. If heads, discard an Energy card attached to the Defending Pokémon.",
|
||
fr: "Lancez une pièce. Si c'est face, défaussez une carte Énergie attachée au Pokémon Défenseur.",
|
||
de: "Wirf 1 Münze. Bei \"Kopf\" lege 1 Energiekarte, die am Verteidigenden Pokémon angelegt ist, auf den Ablagestapel deines Gegners."
|
||
},
|
||
damage: 40,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fire",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|