1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 19:09:54 +00:00
Florian Bouillon 741c19791e
Fixed cards rarities and added cards description and stage (#62)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:11:33 +00:00

85 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../Sword & Shield'
const card: Card = {
name: {
en: "Silicobra",
fr: "Dunaja",
es: "Silicobra",
it: "Silicobra",
pt: "Silicobra",
de: "Salanga"
},
illustrator: "Hitoshi Ariga",
rarity: "Common",
category: "Pokemon",
set: Set,
hp: 70,
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Headbutt",
fr: "Coup dBoule",
es: "Golpe Cabeza",
it: "Bottintesta",
pt: "Cabeçada",
de: "Kopfnuss"
},
damage: 10,
},
{
cost: [
"Fighting",
"Colorless",
],
name: {
en: "Tail Whap",
fr: "Queue Battoir",
es: "Coletón",
it: "Codabotta",
pt: "Surra de Cauda",
de: "Schweifvertrimmer"
},
damage: 20,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
description: {
en: "As it digs, it swallows sand and stores it in its neck pouch. The pouch can hold more than 17 pounds of sand."
}
}
export default card