mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
106 lines
2.2 KiB
TypeScript
106 lines
2.2 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Rebel Clash'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Probopass",
|
||
fr: "Tarinorme",
|
||
es: "Probopass",
|
||
it: "Probopass",
|
||
pt: "Probopass",
|
||
de: "Voluminas"
|
||
},
|
||
|
||
illustrator: "Anesaki Dynamic",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
evolveFrom: {
|
||
en: "Nosepass",
|
||
fr: "Tarinor",
|
||
es: "Nosepass",
|
||
it: "Nosepass",
|
||
pt: "Nosepass",
|
||
de: "Nasgnet"
|
||
},
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Metal",
|
||
],
|
||
name: {
|
||
en: "Gravitational Drop",
|
||
fr: "Chute Gravitationnelle",
|
||
es: "Caída Gravitacional",
|
||
it: "Caduta Gravitazionale",
|
||
pt: "Queda Gravitacional",
|
||
de: "Gravitationsfall"
|
||
},
|
||
effect: {
|
||
en: "This attack does 30 more damage for each Colorless in your opponent's Active Pokémon's Retreat Cost.",
|
||
fr: "Cette attaque inflige 30 dégâts supplémentaires pour chaque Colorless dans le Coût de Retraite du Pokémon Actif de votre adversaire.",
|
||
es: "Este ataque hace 30 puntos de daño más por cada Colorless en el Coste de Retirada del Pokémon Activo de tu rival.",
|
||
it: "Questo attacco infligge 30 danni in più per ogni Colorless nel costo di ritirata del Pokémon attivo del tuo avversario.",
|
||
pt: "Este ataque causa 30 pontos de dano a mais para cada Colorless no custo de Recuo do Pokémon Ativo do seu oponente.",
|
||
de: "Diese Attacke fügt für jedes Colorless in den Rückzugskosten des Aktiven Pokémon deines Gegners 30 Schadenspunkte mehr zu."
|
||
},
|
||
damage: "10+",
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Metal",
|
||
"Metal",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Heavy Impact",
|
||
fr: "Gros Impact",
|
||
es: "Impacto Pesado",
|
||
it: "Impatto Pesante",
|
||
pt: "Impacto Pesado",
|
||
de: "Schwerer Einschlag"
|
||
},
|
||
|
||
damage: 120,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Fire",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
resistances: [
|
||
{
|
||
type: "Grass",
|
||
value: "-30"
|
||
},
|
||
],
|
||
|
||
retreat: 4,
|
||
hp: 140,
|
||
types: ["Metal"],
|
||
regulationMark: "D",
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
description: {
|
||
en: "It uses three small units to catch prey and battle enemies. The main body mostly just gives orders."
|
||
}
|
||
}
|
||
|
||
export default card
|