1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 08:32:10 +00:00
Florian Bouillon b46b2c4fb9
Updated Evolving Skies with attacks and other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-28 16:54:37 +02:00

74 lines
1.8 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Evolving Skies'
const card: Card = {
set: Set,
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
name: {
en: "Pinsir",
fr: "Scarabrute",
es: "Pinsir",
it: "Pinsir",
pt: "Pinsir",
de: "Pinsir"
},
rarity: "Rare",
category: "Pokemon",
hp: 120,
types: ["Grass"],
stage: "Basic",
illustrator: "Shin Nagasawa",
abilities: [{
type: "Ability",
name: {
en: "Vise Coach",
fr: "Étau Entraîné",
es: "Entrenador Pinza",
it: "Stretta Magistrale",
pt: "Vise Coach",
de: "Klammertrainer"
},
effect: {
en: "Damage from your Single Strike Pokémons attacks isnt affected by your opponents Active Pokémons Resistance.",
fr: "Les dégâts des attaques de vos Pokémon Poing Final ne sont pas affectés par la Résistance du Pokémon Actif de votre adversaire.",
es: "El daño de los ataques de tus Pokémon Golpe Brusco no se ve afectado por la Resistencia del Pokémon Activo de tu rival.",
it: "I danni degli attacchi dei tuoi Pokémon Colpo Singolo non sono influenzati dalla resistenza del Pokémon attivo del tuo avversario.",
pt: "Damage from your Single Strike Pokémons attacks isnt affected by your opponents Active Pokémons Resistance.",
de: "Schaden durch Attacken deiner Fokussierter-Angriff-Pokémon wird durch Resistenz auf dem Aktiven Pokémon deines Gegners nicht verändert."
}
}],
attacks: [{
name: {
en: "Seismic Toss",
fr: "Frappe Atlas",
es: "Sísmico",
it: "Movimento Sismico",
pt: "Seismic Toss",
de: "Geowurf"
},
damage: 110,
cost: ["Grass", "Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2
}
export default card