1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00

66 lines
956 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 '../Unified Minds'
const card: Card = {
name: {
en: "Axew",
fr: "Coupenotte",
},
illustrator: "Yukiko Baba",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
610,
],
hp: 60,
types: [
"Dragon",
],
stage: "Basic",
abilities: [
{
type: "Ability",
name: {
en: "Unnerve",
fr: "Tension",
},
effect: {
en: "Whenever your opponent plays an Item or Supporter card from their hand, prevent all effects of that card done to this Pokémon.",
fr: "Chaque fois que votre adversaire joue une carte Objet ou une carte Supporter de sa main, évitez tous les effets de cette carte sur ce Pokémon.",
},
},
],
attacks: [
{
cost: [
"Fire",
"Metal",
],
name: {
en: "Gnaw",
fr: "Ronge",
},
damage: 20,
},
],
weaknesses: [
{
type: "Fairy",
value: "×2"
},
],
retreat: 1,
}
export default card