1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

76 lines
1.1 KiB
TypeScript
Raw Permalink 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 '../Sandstorm'
const card: Card = {
name: {
en: "Anorith",
fr: "Anorith",
de: "Anorith"
},
illustrator: "Ken Sugimori",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
347,
],
hp: 80,
types: [
"Fighting",
],
evolveFrom: {
en: "Claw Fossil",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Slash",
fr: "Tranche",
de: "Schlitzer"
},
damage: 20,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Double Scratch",
fr: "Double écorchure",
de: "Doppelkratzer"
},
effect: {
en: "Flip 2 coins. This attack does 40 damage times the number of heads.",
fr: "Lancez deux pièces. Cette attaque inflige 40 dégâts multipliés par le nombre de face.",
de: "Wirf 2 Münzen. Dieser Angriff fügt 40 Schadenspunkte mal der Anzahl 'Kopf' zu."
},
damage: "40x",
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
}
export default card