1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 08:32:10 +00:00
Florian Bouillon b46b2c4fb9
Updated Evolving Skies with attacks and other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-28 16:54:37 +02:00

73 lines
1.4 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 '../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 cest 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
}
export default card