mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-21 07:39:54 +00:00
63 lines
1.9 KiB
TypeScript
63 lines
1.9 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Celestial Guardians"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Alolan Graveler",
|
|
fr: "Gravalanchd'Alola",
|
|
es: "Gravelerde Alola",
|
|
it: "Gravelerdi Alola",
|
|
de: "Alola-Georok",
|
|
'pt-br': "Gravelerde Alola",
|
|
ko: "알로라데구리"
|
|
},
|
|
|
|
illustrator: "match",
|
|
rarity: "Two Diamond",
|
|
category: "Pokemon",
|
|
hp: 110,
|
|
types: ["Lightning"],
|
|
|
|
evolveFrom: {
|
|
en: "Alolan Geodude"
|
|
},
|
|
|
|
description: {
|
|
en: "When two Graveler fight each other, it fills the\nsurroundings with flashes of light and sound.\nPeople call it the “fireworks of the earth.”",
|
|
fr: "Quand ils combattent entre eux, l'air est saturé\nd'éclairs et de détonations. Les gens du coin les\nsurnomment \" les feux d'artifice des collines \".",
|
|
es: "Cuando dos Graveler pelean entre ellos, el aire\nse llena de destellos y estallidos. Los lugareños\nlo suelen comparar con fuegos artificiales.",
|
|
it: "Quando i Graveler lottano fra di loro, provocano lampi e botti.\nGli abitanti di Alola li chiamano fuochi artificiali di terra.",
|
|
de: "Streiten sie sich untereinander, erzeugen sie ein lautes\nKnallen und grelles Leuchten, das von Einheimischen\n\"Felsenfeuerwerk\" genannt wird.",
|
|
'pt-br': "Quando dois Graveler brigam, enchem o ambiente\nde clarões e estalos. São chamados de fogos\nde artifício terrestres.",
|
|
ko: "데구리끼리 싸우면 주변에\n빛과 폭음이 난다. 그 지방 사람은\n육지 불꽃놀이라고 부른다."
|
|
},
|
|
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Heavy Impact",
|
|
fr: "Gros Impact",
|
|
es: "Impacto Pesado",
|
|
it: "Impatto Pesante",
|
|
de: "Schwerer Einschlag",
|
|
'pt-br': "Impacto Pesado",
|
|
ko: "헤비임팩트"
|
|
},
|
|
|
|
damage: 60,
|
|
cost: ["Lightning", "Colorless", "Colorless"]
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Fighting",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 3
|
|
}
|
|
|
|
export default card
|