mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
81 lines
1.6 KiB
TypeScript
81 lines
1.6 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Evolving Skies'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
name: {
|
||
en: "Dwebble",
|
||
fr: "Crabicoque",
|
||
es: "Dwebble",
|
||
it: "Dwebble",
|
||
pt: "Dwebble",
|
||
de: "Lithomith"
|
||
},
|
||
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
hp: 60,
|
||
types: ["Grass"],
|
||
stage: "Basic",
|
||
illustrator: "Shigenori Negishi",
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Ram",
|
||
fr: "Collision",
|
||
es: "Apisonar",
|
||
it: "Carica",
|
||
pt: "Ram",
|
||
de: "Ramme"
|
||
},
|
||
|
||
damage: 10,
|
||
cost: ["Grass"]
|
||
}, {
|
||
name: {
|
||
en: "Sharp Claws",
|
||
fr: "Griffes Affûtées",
|
||
es: "Garras Afiladas",
|
||
it: "Artigli Affilati",
|
||
pt: "Sharp Claws",
|
||
de: "Scharfe Krallen"
|
||
},
|
||
|
||
effect: {
|
||
en: "Flip a coin. If heads, this attack does 30 more damage.",
|
||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 30 dégâts supplémentaires.",
|
||
es: "Lanza 1 moneda. Si sale cara, este ataque hace 30 puntos de daño más.",
|
||
it: "Lancia una moneta. Se esce testa, questo attacco infligge 30 danni in più.",
|
||
pt: "Flip a coin. If heads, this attack does 30 more damage.",
|
||
de: "Wirf 1 Münze. Bei Kopf fügt diese Attacke 30 Schadenspunkte mehr zu."
|
||
},
|
||
|
||
damage: "10+",
|
||
cost: ["Grass", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fire",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2,
|
||
|
||
description: {
|
||
en: "It first tries to find a rock to live in, but if there are no suitable rocks to be found, Dwebble may move in to the ports of a Hippowdon."
|
||
},
|
||
|
||
dexId: [557],
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card
|