mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
Finished Complete Rework of the Database
This commit is contained in:
70
data/Platinum/Supreme Victors/72.ts
Normal file
70
data/Platinum/Supreme Victors/72.ts
Normal file
@ -0,0 +1,70 @@
|
||||
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: "Fightning",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user