mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
77 lines
2.8 KiB
TypeScript
77 lines
2.8 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Silver Tempest"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Omastar V",
|
|
fr: "Amonistar V",
|
|
es: "Omastar V",
|
|
it: "Omastar V",
|
|
pt: "Omastar V",
|
|
de: "Amoroso V"
|
|
},
|
|
|
|
rarity: "Ultra Rare",
|
|
category: "Pokemon",
|
|
hp: 190,
|
|
types: ["Water"],
|
|
stage: "Basic",
|
|
suffix: "V",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Primal Guidance",
|
|
fr: "Conseil Primitif",
|
|
es: "Guía Primigenia",
|
|
it: "Guida Primordiale",
|
|
pt: "Orientação Primitiva",
|
|
de: "Urzeitliches Geleit"
|
|
},
|
|
|
|
effect: {
|
|
en: "Search your deck for up to 2 Pokémon that evolve from an Item card that has \"Fossil\" in its name and put them onto your Bench. Then, shuffle your deck.",
|
|
fr: "Cherchez dans votre deck jusqu'à 2 Pokémon évoluant d'une carte Objet ayant \" Fossile \" dans son nom, et placez-les sur votre Banc. Mélangez ensuite votre deck.",
|
|
es: "Busca en tu baraja hasta 2 Pokémon que evolucionen de una carta de Objeto que tenga \"Fósil\" en su nombre y ponlos en tu Banca. Después, baraja las cartas de tu baraja.",
|
|
it: "Cerca nel tuo mazzo fino a due Pokémon che si evolvono da una carta Strumento che ha \"Fossile\" nel nome e mettili nella tua panchina. Poi rimischia le carte del tuo mazzo.",
|
|
pt: "Procure por até 2 Pokémon no seu baralho que evoluam de uma carta de Item que tenha \"Fóssil\" em seu nome e coloque-os no seu Banco. Em seguida, embaralhe o seu baralho.",
|
|
de: "Durchsuche dein Deck nach bis zu 2 Pokémon, die sich aus einer Itemkarte entwickeln, bei der \"Fossil\" zum Namen gehört, und lege sie auf deine Bank. Mische anschließend dein Deck."
|
|
}
|
|
}, {
|
|
cost: ["Water", "Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Tentacle Lock",
|
|
fr: "Blocage Tentaculaire",
|
|
es: "Bloqueo Tentacular",
|
|
it: "Blocco Tentacolare",
|
|
pt: "Trava de Tentáculo",
|
|
de: "Tentakelgriff"
|
|
},
|
|
|
|
effect: {
|
|
en: "If the Defending Pokémon is an Evolution Pokémon, it can't attack during your opponent's next turn.",
|
|
fr: "Si le Pokémon Défenseur est un Pokémon Évolutif, il ne peut pas attaquer pendant le prochain tour de votre adversaire.",
|
|
es: "Si el Pokémon Defensor es un Pokémon Evolución, no puede atacar durante el próximo turno de tu rival.",
|
|
it: "Durante il prossimo turno del tuo avversario, il Pokémon difensore non può attaccare se è un Pokémon Evoluzione.",
|
|
pt: "Se o Pokémon Defensor for um Pokémon de Evolução, ele não poderá atacar durante o próximo turno do seu oponente.",
|
|
de: "Wenn das Verteidigende Pokémon ein Entwicklungs-Pokémon ist, kann es während des nächsten Zuges deines Gegners nicht angreifen."
|
|
},
|
|
|
|
damage: 110
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "F",
|
|
variants: {
|
|
normal: false,
|
|
reverse: false,
|
|
holo: true,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |