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

73 lines
1.1 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 '../Ultra Prism'
const card: Card = {
name: {
en: "Stunky",
fr: "Moufouette",
es: "Stunky",
it: "Stunky",
pt: "Stunky",
de: "Skunkapuh"
},
illustrator: "Naoyo Kimura",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
434,
],
hp: 70,
types: [
"Darkness",
],
stage: "Basic",
attacks: [
{
cost: [
"Darkness",
],
name: {
en: "Gas Bond",
fr: "Liaison de Gaz",
es: "Mismo Gas",
it: "Vincolo di Gas",
pt: "Vínculo Gasoso",
de: "Gasbund"
},
effect: {
en: "Both Active Pokémon are now Confused.",
fr: "Les deux Pokémon Actifs sont maintenant Confus.",
es: "Ambos Pokémon Activos pasan a estar Confundidos.",
it: "Entrambi i Pokémon attivi vengono confusi.",
pt: "Ambos os Pokémon Ativos agora estão Confusos.",
de: "Beide Aktiven Pokémon sind jetzt verwirrt."
},
damage: 10,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 2,
}
export default card