1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 11:30:46 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,63 @@
import { Card } from '../../../interfaces'
import Set from '../Cosmic Eclipse'
const card: Card = {
name: {
en: "Dusclops",
fr: "Téraclope",
},
illustrator: "Suwama Chiaki",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
356,
],
hp: 90,
types: [
"Psychic",
],
evolveFrom: {
en: "Duskull",
fr: "Skelénox",
},
stage: "Stage1",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Disable",
fr: "Entrave",
},
effect: {
en: "Choose 1 of your opponent's Active Pokémon's attacks. That Pokémon can't use that attack during your opponent's next turn.",
fr: "Choisissez lune des attaques du Pokémon Actif de votre adversaire. Ce Pokémon ne peut pas utiliser cette attaque pendant le prochain tour de votre adversaire.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Darkness",
value: "×2"
},
],
resistances: [
{
type: "Fightning",
value: "-20"
},
],
retreat: 3,
}
export default card