1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-06 21:39:55 +00:00

87 lines
2.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../SWSH Black Star Promos'
const card: Card = {
set: Set,
name: {
en: "Orbeetle V",
fr: "Astronelle V",
es: "Orbeetle V",
it: "Orbeetle V",
pt: "Orbeetle V",
de: "Maritellit V"
},
illustrator: "5ban Graphics",
rarity: "None",
category: "Pokemon",
hp: 180,
types: ["Grass"],
attacks: [{
name: {
en: "Strafe",
fr: "Bombarder",
es: "Pasada de Ataque",
it: "Mitragliare",
pt: "Bombardear",
de: "Beharken"
},
effect: {
en: "You may switch this Pokémon with 1 of your Benched Pokémon.",
fr: "Vous pouvez échanger ce Pokémon contre l'un de vos Pokémon de Banc.",
es: "Puedes cambiar este Pokémon por 1 de tus Pokémon en Banca.",
it: "Puoi scambiare questo Pokémon con uno della tua panchina.",
pt: "Você pode trocar este Pokémon por 1 dos seus Pokémon no Banco.",
de: "Du kannst dieses Pokémon gegen 1 Pokémon auf deiner Bank austauschen."
},
damage: 20,
cost: ["Grass"]
}, {
name: {
en: "Mysterious Wave",
fr: "Onde Mystérieuse",
es: "Onda Misteriosa",
it: "Onda Enigmatica",
pt: "Onda Oculta",
de: "Geheimnisvolle Welle"
},
effect: {
en: "This attack does 30 more damage for each Energy attached to your opponent's Active Pokémon.",
fr: "Cette attaque inflige 30 dégâts supplémentaires pour chaque Énergie attachée au Pokémon Actif de votre adversaire.",
es: "Este ataque hace 30 puntos de daño más por cada Energía unida al Pokémon Activo de tu rival.",
it: "Questo attacco infligge 30 danni in più per ogni Energia assegnata al Pokémon attivo del tuo avversario.",
pt: "Este ataque causa 30 pontos de dano a mais para cada Energia ligada ao Pokémon Ativo do seu oponente.",
de: "Diese Attacke fügt für jede an das Aktive Pokémon deines Gegners angelegte Energie 30 Schadenspunkte mehr zu."
},
damage: "50+",
cost: ["Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
stage: "Basic",
dexId: [826],
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
},
regulationMark: "D",
suffix: "V"
}
export default card