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

94 lines
1.6 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 '../Lost Thunder'
const card: Card = {
name: {
en: "Granbull",
fr: "Granbull",
es: "Granbull",
it: "Granbull",
pt: "Granbull",
de: "Granbull"
},
illustrator: "Shin Nagasawa",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
210,
],
hp: 130,
types: [
"Fairy",
],
evolveFrom: {
en: "Snubbull",
fr: "Snubbull",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fairy",
],
name: {
en: "All Out",
fr: "À Fond",
es: "A por Todas",
it: "A Tutta Forza",
pt: "Esgotado",
de: "Aufs Ganze gehen"
},
effect: {
en: "If you have no cards in your hand, this attack does 130 more damage.",
fr: "Si vous navez aucune carte dans votre main, cette attaque inflige 130 dégâts supplémentaires.",
es: "Si no tienes ninguna carta en tu mano, este ataque hace 130 puntos de daño más.",
it: "Se non hai carte in mano, questo attacco infligge 130 danni in più.",
pt: "Se você não tiver cartas na sua mão, este ataque causará 130 pontos de dano a mais.",
de: "Wenn du keine Karten auf deiner Hand hast, fügt diese Attacke 130 Schadenspunkte mehr zu."
},
damage: "30+",
},
{
cost: [
"Fairy",
"Fairy",
"Fairy",
],
name: {
en: "Giant Fangs",
fr: "Crocs Géants",
es: "Colmillos Gigantes",
it: "Zanne Giganti",
pt: "Presas Gigantes",
de: "Riesenbeißer"
},
damage: 110,
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
resistances: [
{
type: "Darkness",
value: "-20"
},
],
retreat: 3,
}
export default card