mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 08:39:17 +00:00
feat: Added Lost Origin datas (#360)
This commit is contained in:
79
data/Sword & Shield/Lost Origin/TG12.ts
Normal file
79
data/Sword & Shield/Lost Origin/TG12.ts
Normal file
@ -0,0 +1,79 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Lost Origin"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Orbeetle V",
|
||||
fr: "Astronelle V",
|
||||
es: "Orbeetle V",
|
||||
it: "Orbeetle V",
|
||||
pt: "Orbeetle V",
|
||||
de: "Maritellit V"
|
||||
},
|
||||
|
||||
rarity: "Ultra Rare",
|
||||
category: "Pokemon",
|
||||
hp: 180,
|
||||
types: ["Grass"],
|
||||
stage: "Basic",
|
||||
suffix: "V",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Grass"],
|
||||
|
||||
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", "Colorless"],
|
||||
|
||||
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+"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "D",
|
||||
|
||||
variants: {
|
||||
"normal": false,
|
||||
"reverse": false,
|
||||
"holo": true
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user