1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 05:12:11 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

94 lines
2.8 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 '../Crimson Invasion'
const card: Card = {
name: {
en: "Octillery",
fr: "Octillery",
es: "Octillery",
it: "Octillery",
pt: "Octillery",
de: "Octillery"
},
illustrator: "tetsuya koizumi",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
224,
],
hp: 100,
types: [
"Water",
],
evolveFrom: {
en: "Remoraid",
fr: "Rémoraid",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Ink Spit",
fr: "SepiaCrachat",
es: "Escupido de Tinta",
it: "Sputinchiostro",
pt: "Cuspe de Tinta",
de: "Tintenspucke"
},
effect: {
en: "If the Defending Pokémon tries to attack during your opponents next turn, your opponent flips a coin. If tails, that attack does nothing.",
fr: "Si le Pokémon Défenseur essaie dattaquer pendant le prochain tour de votre adversaire, ce dernier lance une pièce. Si cest pile, son attaque ne fait rien.",
es: "Si el Pokémon Defensor intenta atacar durante el próximo turno de tu rival, este lanza 1 moneda. Si sale cruz, ese ataque no hace nada.",
it: "Se durante il prossimo turno del tuo avversario il Pokémon difensore prova ad attaccare, il tuo avversario lancia una moneta. Se esce croce, quellattacco non ha effetto.",
pt: "Se o Pokémon Defensor tentar atacar durante a próxima vez de jogar do seu oponente, seu oponente jogará 1 moeda. Se sair coroa, aquele ataque não fará nada.",
de: "Wenn das Verteidigende Pokémon versucht, während des nächsten Zuges deines Gegners anzugreifen, wirft dein Gegner 1 Münze. Bei Zahl hat jene Attacke keine Auswirkungen."
},
},
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Special Artillery",
fr: "Artillerie Spéciale",
es: "Artillería Especial",
it: "Artiglieria Speciale",
pt: "Artilharia Especial",
de: "Spezialgeschütz"
},
effect: {
en: "You may discard a Special Energy from this Pokémon. If you do, this attack does 80 more damage.",
fr: "Vous pouvez défausser une Énergie spéciale attachée à ce Pokémon. Dans ce cas, cette attaque inflige 80 dégâts supplémentaires.",
es: "Puedes descartar 1 Energía Especial de este Pokémon. Si lo haces, este ataque hace 80 puntos de daño más.",
it: "Puoi scartare unEnergia speciale assegnata a questo Pokémon. Se lo fai, questo attacco infligge 80 danni in più.",
pt: "Você pode descartar 1 Energia Especial deste Pokémon. Se fizer isto, este ataque causará 80 pontos de dano a mais.",
de: "Du kannst 1 Spezial-Energie von diesem Pokémon auf deinen Ablagestapel legen. Wenn du das machst, fügt diese Attacke 80 Schadenspunkte mehr zu."
},
damage: "40+",
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 2,
}
export default card