1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 17:39:18 +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,70 @@
import { Card } from '../../../interfaces'
import Set from '../Unbroken Bonds'
const card: Card = {
name: {
en: "Espurr",
fr: "Psystigri",
},
illustrator: "HYOGONOSUKE",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
677,
],
hp: 60,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Caturday",
fr: "Chamedi",
},
effect: {
en: "Draw a card. If you do, this Pokémon is now Asleep.",
fr: "Piochez une carte. Dans ce cas, ce Pokémon est maintenant Endormi.",
},
},
{
cost: [
"Psychic",
"Colorless",
"Colorless",
],
name: {
en: "Ear Kinesis",
fr: "Oreille Kinésique",
},
effect: {
en: "This attack does 20 damage to 1 of your opponent's Benched Pokémon for each damage counter on that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Cette attaque inflige 20 dégâts à lun des Pokémon de Banc de votre adversaire pour chaque marqueur de dégâts sur ce Pokémon. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
},
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 1,
}
export default card