mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
83 lines
1.0 KiB
TypeScript
83 lines
1.0 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Cosmic Eclipse'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Anorith",
|
||
fr: "Anorith",
|
||
es: "Anorith",
|
||
it: "Anorith",
|
||
pt: "Anorith",
|
||
de: "Anorith"
|
||
},
|
||
illustrator: "Sumiyoshi Kizuki",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
347,
|
||
],
|
||
hp: 90,
|
||
types: [
|
||
"Fighting",
|
||
],
|
||
evolveFrom: {
|
||
en: "Unidentified Fossil",
|
||
fr: "Fossile Inconnu",
|
||
},
|
||
stage: "Stage1",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Bug Bite",
|
||
fr: "Piqûre",
|
||
es: "Picadura",
|
||
it: "Coleomorso",
|
||
pt: "Picada",
|
||
de: "Käferbiss"
|
||
},
|
||
|
||
damage: 40,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Fighting",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Claw Slash",
|
||
fr: "Tranch’Griffe",
|
||
es: "Cuchillada Garra",
|
||
it: "Lacerartiglio",
|
||
pt: "Golpe de Garra",
|
||
de: "Klauenschlitzer"
|
||
},
|
||
|
||
damage: 80,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Grass",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|