1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-23 08:39:54 +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
955 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 '../Plasma Blast'
const card: Card = {
name: {
en: "Axew",
fr: "Coupenotte",
},
illustrator: "sui",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
610,
],
hp: 50,
types: [
"Dragon",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Strong Bond",
fr: "Attachement Profond",
},
effect: {
en: "Search your deck for a Supporter card named Iris, reveal it, and put it into your hand. Shuffle your deck afterward.",
fr: "Cherchez une carte Supporter nommée Iris dans votre deck, montrez-la, puis ajoutez-la à votre main. Mélangez ensuite votre deck.",
},
},
{
cost: [
"Fighting",
"Metal",
],
name: {
en: "Dragon Claw",
fr: "Dracogriffe",
},
damage: 20,
},
],
weaknesses: [
{
type: "Dragon",
value: "×2"
},
],
retreat: 1,
}
export default card