1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 23:02:09 +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: "Crustle",
fr: "Crabaraque",
es: "Crustle",
it: "Crustle",
pt: "Crustle",
de: "Castellith"
},
rarity: "Uncommon",
category: "Pokemon",
hp: 130,
types: ["Grass"],
stage: "Stage1",
illustrator: "sowsow",
attacks: [{
name: {
en: "X-Scissor",
fr: "Plaie Croix",
es: "Tijera X",
it: "Forbice X",
pt: "X-Scissor",
de: "Kreuzschere"
},
effect: {
en: "Flip a coin. If heads, this attack does 60 more damage.",
fr: "Lancez une pièce. Si cest face, cette attaque inflige 60 dégâts supplémentaires.",
es: "Lanza 1 moneda. Si sale cara, este ataque hace 60 puntos de daño más.",
it: "Lancia una moneta. Se esce testa, questo attacco infligge 60 danni in più.",
pt: "Flip a coin. If heads, this attack does 60 more damage.",
de: "Wirf 1 Münze. Bei Kopf fügt diese Attacke 60 Schadenspunkte mehr zu."
},
damage: "30+",
cost: ["Grass", "Colorless"]
}, {
name: {
en: "Hammer In",
fr: "Enfoncement",
es: "Martillear",
it: "Martello",
pt: "Hammer In",
de: "Einhämmern"
},
damage: 130,
cost: ["Grass", "Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 3
}
export default card