1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-28 22:02:15 +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

68 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../Guardians Rising'
const card: Card = {
name: {
en: "Tentacool",
fr: "Tentacool",
es: "Tentacool",
it: "Tentacool",
pt: "Tentacool",
de: "Tentacha"
},
illustrator: "Shibuzoh.",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
72,
],
hp: 60,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Sludge Shock",
fr: "Choc Détritus",
es: "Impacto de Residuos",
it: "Fangoshock",
pt: "Choque de Lama",
de: "Schlammschock"
},
effect: {
en: "The Defending Pokémon cant be healed during your opponents next turn.",
fr: "Le Pokémon Défenseur ne peut pas être soigné pendant le prochain tour de votre adversaire.",
es: "El Pokémon Defensor no puede ser curado durante el próximo turno de tu rival.",
it: "Durante il prossimo turno del tuo avversario, il Pokémon difensore non può essere curato.",
pt: "O Pokémon Defensor não poderá ser curado durante a próxima vez de jogar do seu oponente.",
de: "Das Verteidigende Pokémon kann während des nächsten Zuges deines Gegners nicht geheilt werden."
},
damage: 10,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
}
export default card