mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 06:42:10 +00:00
94 lines
2.0 KiB
TypeScript
94 lines
2.0 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Unified Minds'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Escavalier",
|
||
fr: "Lançargot",
|
||
es: "Escavalier",
|
||
it: "Escavalier",
|
||
pt: "Escavalier",
|
||
de: "Cavalanzas"
|
||
},
|
||
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",
|
||
es: "Lanza Distinguida",
|
||
it: "Lancia Selettiva",
|
||
pt: "Lança Perspicaz",
|
||
de: "Anspruchsvoller Speer"
|
||
},
|
||
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 n’a aucun marqueur de dégâts avant que cette attaque n’inflige des dégâts, cette attaque ne fait rien.",
|
||
es: "Si el Pokémon Activo de tu rival no tiene ningún contador de daño sobre él antes de que este ataque inflija daño, este ataque no hace nada.",
|
||
it: "Se il Pokémon attivo del tuo avversario non ha segnalini danno prima che questo attacco infligga danni, questo attacco non ha effetto.",
|
||
pt: "Se o Pokémon Ativo do seu oponente não tiver nenhum contador de dano nele antes deste ataque causar dano, este ataque não fará nada.",
|
||
de: "Wenn auf dem Aktiven Pokémon deines Gegners keine Schadensmarken liegen, bevor diese Attacke Schaden zufügt, hat diese Attacke keine Auswirkungen."
|
||
},
|
||
damage: 80,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Metal",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Iron Lance",
|
||
fr: "Lance de Fer",
|
||
es: "Lanza de Hierro",
|
||
it: "Spunzone Ferreo",
|
||
pt: "Lança de Ferro",
|
||
de: "Eisenlanze"
|
||
},
|
||
|
||
damage: 90,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fire",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Psychic",
|
||
value: "-20"
|
||
},
|
||
],
|
||
retreat: 3,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|