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

68 lines
1000 B
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 '../Steam Siege'
const card: Card = {
name: {
en: "Anorith",
fr: "Anorith",
},
illustrator: "Shigenori Negishi",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
347,
],
hp: 80,
types: [
"Fighting",
],
stage: "RESTORED",
abilities: [
{
type: "Ability",
name: {
en: "Restored Barrier",
fr: "Bouclier Recréé",
},
effect: {
en: "Each of your Restored Pokémon has no Weakness.",
fr: "Aucun de vos Pokémon Recréés na de Faiblesse.",
},
},
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "X-Scissor",
fr: "Plaie-Croix",
},
effect: {
en: "Flip a coin. If heads, this attack does 20 more damage.",
fr: "Lancez une pièce. Si cest face, cette attaque inflige 20 dégâts supplémentaires.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
}
export default card