1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-18 18:29:19 +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,77 @@
import { Card } from '../../../interfaces'
import Set from '../Unified Minds'
const card: Card = {
name: {
en: "Escavalier",
fr: "Lançargot",
},
illustrator: "Satoshi Shirai",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
589,
],
hp: 130,
types: [
"Metal",
],
evolveFrom: {
en: "Karrablast",
fr: "Carabing",
},
stage: "Stage1",
attacks: [
{
cost: [
"Metal",
],
name: {
en: "Discerning Spear",
fr: "Épieu Distinct",
},
effect: {
en: "If your opponent's Active Pokémon has no damage counters on it before this attack does damage, this attack does nothing.",
fr: "Si le Pokémon Actif de votre adversaire na aucun marqueur de dégâts avant que cette attaque ninflige des dégâts, cette attaque ne fait rien.",
},
damage: 80,
},
{
cost: [
"Metal",
"Colorless",
"Colorless",
],
name: {
en: "Iron Lance",
fr: "Lance de Fer",
},
damage: 90,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 3,
}
export default card