1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-24 12:59:18 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,75 @@
import { Card } from '../../../interfaces'
import Set from '../Sun & Moon'
const card: Card = {
name: {
en: "Crabominable",
fr: "Crabominable",
},
illustrator: "TOKIYA",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
740,
],
hp: 140,
types: [
"Water",
],
evolveFrom: {
en: "Crabrawler",
fr: "Crabagarre",
},
stage: "Stage1",
attacks: [
{
cost: [
"Water",
"Water",
"Colorless",
],
name: {
en: "Avalanche",
fr: "Avalanche",
},
effect: {
en: "This attack does 10 damage to each of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Cette attaque inflige 10 dégâts à chacun des Pokémon de Banc de votre adversaire. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
},
damage: 80,
},
{
cost: [
"Water",
"Water",
"Water",
"Colorless",
],
name: {
en: "Ice Hammer",
fr: "Marteau de Glace",
},
damage: 140,
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
retreat: 4,
}
export default card