mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
68 lines
1.3 KiB
TypeScript
68 lines
1.3 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Obsidian Flames"
|
|
|
|
const card: Card = {
|
|
dexId: [740],
|
|
set: Set,
|
|
|
|
name: {
|
|
fr: "Crabominable",
|
|
en: "Crabominable",
|
|
es: "Crabominable",
|
|
it: "Crabominable",
|
|
pt: "Crabominable",
|
|
de: "Krawell"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
hp: 160,
|
|
types: ["Fighting"],
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
cost: ["Fighting", "Colorless"],
|
|
|
|
name: {
|
|
fr: "Confrontation",
|
|
en: "Confront",
|
|
es: "Confrontar",
|
|
it: "Confronto",
|
|
pt: "Confrontar",
|
|
de: "Konfrontieren"
|
|
},
|
|
|
|
damage: 50
|
|
}, {
|
|
cost: ["Fighting", "Fighting", "Colorless"],
|
|
|
|
name: {
|
|
fr: "Coup d'Articulations",
|
|
en: "Knuckle Impact",
|
|
es: "Impacto Nudillo",
|
|
it: "Impatto Nocche",
|
|
pt: "Impacto Ossudo",
|
|
de: "Knöchelprall"
|
|
},
|
|
|
|
effect: {
|
|
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas attaquer.",
|
|
en: "During your next turn, this Pokémon can't attack.",
|
|
es: "Durante tu próximo turno, este Pokémon no puede atacar.",
|
|
it: "Durante il tuo prossimo turno, questo Pokémon non può attaccare.",
|
|
pt: "Durante o seu próximo turno, este Pokémon não poderá atacar.",
|
|
de: "Während deines nächsten Zuges kann dieses Pokémon nicht angreifen."
|
|
},
|
|
|
|
damage: 170
|
|
}],
|
|
|
|
retreat: 4,
|
|
regulationMark: "G",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |