1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 05:12:11 +00:00
Florian Bouillon e500777516 Started to add variants information for the two most recent sets
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-07-21 12:16:52 +02:00

72 lines
2.4 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 '../Battle Styles'
const card: Card = {
set: Set,
name: {
en: "Octillery",
fr: "Octillery",
es: "Octillery",
it: "Octillery",
pt: "Octillery",
de: "Octillery"
},
rarity: "Secret Rare",
category: "Pokemon",
hp: 110,
types: ["Water"],
abilities: [{
type: "Ability",
name: {
en: "Rapid Strike Search",
fr: "Recherche à Mille Poings",
es: "Búsqueda de Golpe Fluido",
it: "Ricerca Colpo Rapido",
pt: "Busca Golpe Fluido",
de: "Fließender-Angriff-Suche"
},
effect: {
en: "Once during your turn, you may search your deck for a Rapid Strike card, reveal it, and put it into your hand. Then, shuffle your deck. You cant use more than 1 Rapid Strike Search Ability each turn.",
fr: "Une fois pendant votre tour, vous pouvez chercher dans votre deck une carte Mille Poings, la montrer, puis lajouter à votre main. Mélangez ensuite votre deck. Vous ne pouvez utiliser quun talent Recherche à Mille Poings par tour.",
es: "Una vez durante tu turno, puedes buscar en tu baraja 1 carta de Golpe Fluido, enseñarla y ponerla en tu mano. Después, baraja las cartas de tu baraja. No puedes usar más de 1 habilidad Búsqueda de Golpe Fluido en cada turno.",
it: "Una sola volta durante il tuo turno, puoi cercare nel tuo mazzo una carta Colpo Rapido, mostrarla e aggiungerla alle carte che hai mano. Poi rimischia le carte del tuo mazzo. Puoi usare labilità Ricerca Colpo Rapido solo una volta per turno.",
pt: "Uma vez durante o seu turno, você poderá procurar por 1 carta Golpe Fluido no seu baralho, revelá-la e colocá-la na sua mão. Em seguida, embaralhe o seu baralho. Você não pode usar mais de 1 Habilidade Busca Golpe Fluido por turno.",
de: "Einmal während deines Zuges kannst du dein Deck nach 1 Fließender-Angriff-Karte durchsuchen, sie deinem Gegner zeigen und sie auf deine Hand nehmen. Mische anschließend dein Deck. Du kannst die Fähigkeit Fließender-Angriff-Suche nur einmal pro Zug einsetzen."
}
}],
attacks: [{
name: {
en: "Waterfall",
fr: "Cascade",
es: "Cascada",
it: "Cascata",
pt: "Cachoeira",
de: "Kaskade"
},
damage: 50,
cost: ["Water", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card