1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

71 lines
1.2 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Supreme Victors'
const card: Card = {
name: {
en: "Murkrow",
fr: "Cornèbre",
},
illustrator: "Yukiko Baba",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
198,
],
hp: 70,
types: [
"Darkness",
],
stage: "Basic",
attacks: [
{
name: {
en: "Switcheroo",
fr: "Passe-Passe",
},
effect: {
en: "Move a Pokémon Tool card attached to 1 of your opponent's Pokémon to another of your opponent's Pokémon (excluding Pokémon that already has a Pokémon Tool attached to it). (If an effect of this attack is prevented, this attack does nothing.)",
fr: "Déplacez une carte Outil Pokémon attachée à 1 des Pokémon de votre adversaire sur un autre Pokémon de votre adversaire (Pokémon possédant déjà une carte Outil Pokémon exclus). (Si un effet de cette attaque est empêché, cette attaque est sans effet.)",
},
},
{
cost: [
"Darkness",
"Colorless",
],
name: {
en: "Flap",
fr: "Battement",
},
damage: 20,
},
],
weaknesses: [
{
type: "Lightning",
value: "+10"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 1,
}
export default card