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

68 lines
1.5 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 '../Celestial Storm'
const card: Card = {
name: {
en: "Volbeat",
fr: "Muciole",
es: "Volbeat",
it: "Volbeat",
pt: "Volbeat",
de: "Volbeat"
},
illustrator: "Saya Tsuruta",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
313,
],
hp: 70,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Pheromone Catch",
fr: "Prise de Phéromones",
es: "Captura Feromona",
it: "Reazione Feromonica",
pt: "Captador de Feromônio",
de: "Pheromon-Empfang"
},
effect: {
en: "If your Illumise used Pheromone Signals during your last turn, this attack does 100 more damage.",
fr: "Si votre Lumivole a utilisé Signaux de Phéromones pendant votre dernier tour, cette attaque inflige 100 dégâts supplémentaires.",
es: "Si tu Illumise usó Señales Feromona durante tu último turno, este ataque hace 100 puntos de daño más.",
it: "Se il tuo Illumise ha usato Segnali Feromonici durante il tuo ultimo turno, questo attacco infligge 100 danni in più.",
pt: "Se seu Illumise usou Sinais de Feromônio durante a sua última vez de jogar, este ataque causará 100 pontos de dano a mais.",
de: "Wenn dein Illumise während deines letzten Zuges Pheromon-Signale eingesetzt hat, fügt diese Attacke 100 Schadenspunkte mehr zu."
},
damage: "20+",
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 1,
}
export default card