1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00

93 lines
2.2 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 '../Unleashed'
const card: Card = {
name: {
en: "Octillery",
fr: "Octillery",
de: "Octillery"
},
illustrator: "Ken Sugimori",
rarity: "Rare Holo",
category: "Pokemon",
set: Set,
dexId: [
224,
],
hp: 80,
types: [
"Water",
],
evolveFrom: {
en: "Remoraid",
fr: "Remoraid",
},
stage: "Stage1",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Switch Cannon",
fr: "Canon déchange",
de: "Tauschkanone"
},
effect: {
en: "Choose 1 of your opponents Pokémon. This attack does 30 damage to that Pokémon. (Dont apply Weakness and Resistance for Benched Pokémon.) Switch Octillery with 1 of your Benched Pokémon.",
fr: "Choisissez lun des Pokémon de votre adversaire. Cette attaque inflige 30 dégâts à ce Pokémon. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.) Échangez Octillery avec lun des Pokémon de votre Banc.",
de: "Wähle 1 Pokémon deines Gegners. Diesen Angriff fügt dem Gewählten Pokémon 30 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.) Tausche Octillery gegen 1 Pokémon auf deiner Bank aus."
},
},
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Ink Bomb",
fr: "Bombe à encre",
de: "Tintenbombe"
},
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, cette attaque ne fait rien.",
de: "Falls das Verteidigende Pokémon während des nächsten Zuges deines Gegners angreift, wirft dein Gegner 1 Münze. Bei \"Zahl\" hat dieser Angriff keine Auswirkungen."
},
damage: 50,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
retreat: 2,
description: {
en: "It traps foes with the suction cups on its tentacles, then smashes them with its rock-hard head."
},
variants: {
normal: false,
reverse: true,
holo: true,
firstEdition: false
}
}
export default card