1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

66 lines
1.0 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 '../Power Keepers'
const card: Card = {
name: {
en: "Anorith",
},
illustrator: "Midori Harada",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
347,
],
hp: 70,
types: [
"Fighting",
],
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: [
"Fighting",
"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