mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-02 12:19:53 +00:00
61 lines
1.6 KiB
TypeScript
61 lines
1.6 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Genetic Apex"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Tentacool",
|
|
fr: "Tentacool",
|
|
es: "Tentacool",
|
|
it: "Tentacool",
|
|
de: "Tentacha",
|
|
'pt-br': "Tentacool",
|
|
ko: "왕눈해"
|
|
},
|
|
|
|
illustrator: "Shinya Komatsu",
|
|
category: "Pokemon",
|
|
hp: 60,
|
|
types: ["Water"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Water"],
|
|
|
|
name: {
|
|
en: "Gentle Slap",
|
|
fr: "Gifle Douce",
|
|
es: "Bofetada Gentil",
|
|
it: "Schiaffetto",
|
|
de: "Sanfter Hieb",
|
|
'pt-br': "Tapinha",
|
|
ko: "세게때리기"
|
|
},
|
|
|
|
damage: "20"
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Lightning",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 1,
|
|
rarity: "One Diamond",
|
|
|
|
description: {
|
|
en: "Tentacool is not a particularly strong swimmer. It drifts across the surface of shallow seas as it searches for prey.",
|
|
fr: "Peu doué pour la natation, ce Pokémon\nse contente de flotter à la surface des eaux\npeu profondes pour chasser ses proies.",
|
|
es: "Sus facultades natatorias son más bien escasas,\npor lo que se limita a flotar a la deriva en\naguas poco profundas en busca de alimento.",
|
|
it: "Non essendo molto abile a nuotare, va in cerca\ndi prede fluttuando in acque poco profonde.",
|
|
de: "Da Tentacha kein besonders guter Schwimmer ist,\ntreibt es in seichten Gewässern an der\nWasseroberfläche und sucht nach Beute.",
|
|
'pt-br': "Tentacool não nada particularmente bem.\nFlutua pela superfície de águas rasas\nenquanto procura por sua presa.",
|
|
ko: "헤엄치는 힘은 강하지 않다.\n얕은 바다 수면을 떠다니면서\n먹이를 찾는다."
|
|
},
|
|
|
|
boosters: ["mewtwo"]
|
|
}
|
|
|
|
export default card
|