1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49: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,65 @@
import { Card } from '../../../interfaces'
import Set from '../Power Keepers'
const card: Card = {
name: {
en: "Anorith",
},
illustrator: "Midori Harada",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
347,
],
hp: 70,
types: [
"Fightning",
],
evolveFrom: {
en: "Claw Fossil",
},
stage: "Stage1",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Solid Shell",
},
effect: {
en: "Any damage done to Anorith by attacks is reduced by 10 (after applying Weakness and Resistance).",
},
},
],
attacks: [
{
cost: [
"Fightning",
"Colorless",
],
name: {
en: "Fury Cutter",
},
effect: {
en: "Flip 3 coins. If 1 of them is heads, this attack does 10 damage plus 10 more damage. If 2 of them are heads, this attack does 10 damage plus 30 more damage. If all of them are heads, this attack does 10 damage plus 50 more damage.",
},
damage: 10,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
}
export default card