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

74 lines
1.2 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 '../Sandstorm'
const card: Card = {
name: {
en: "Anorith",
fr: "Anorith",
de: "Anorith"
},
illustrator: "Mitsuhiro Arita",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
347,
],
hp: 80,
types: [
"Fighting",
],
evolveFrom: {
en: "Claw Fossil",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Fast Evolution",
fr: "Évolution fulgurante",
de: "Fast Evolution"
},
effect: {
en: "Search your deck for an Evolution card, show it to your opponent, and put it into your hand. Shuffle your deck afterward.",
fr: "Choisissez dans votre deck une carte Évolution, montrez-la à votre adversaire et placez-la dans votre main. Ensuite, mélangez votre deck.",
de: "Search your deck for an Evolution card, show it to your opponent, and put it into your hand. Shuffle your deck afterward."
},
},
{
cost: [
"Fighting",
"Colorless",
],
name: {
en: "Pierce",
fr: "Transpercer",
de: "Pierce"
},
damage: 30,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
}
export default card