mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
feat: Add shrouded fable cards (#525)
This commit is contained in:
54
data/Scarlet & Violet/Shrouded Fable/044.ts
Normal file
54
data/Scarlet & Violet/Shrouded Fable/044.ts
Normal file
@ -0,0 +1,54 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shrouded Fable"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Axew",
|
||||
fr: "Coupenotte",
|
||||
es: "Axew",
|
||||
it: "Axew",
|
||||
pt: "Axew",
|
||||
de: "Milza"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Dragon"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fighting"],
|
||||
|
||||
name: {
|
||||
en: "Scratch",
|
||||
fr: "Griffe",
|
||||
es: "Arañazo",
|
||||
it: "Graffio",
|
||||
pt: "Arranhão",
|
||||
de: "Kratzer"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}, {
|
||||
cost: ["Fighting", "Metal"],
|
||||
|
||||
name: {
|
||||
en: "Sharp Fang",
|
||||
fr: "Croc Aiguisé",
|
||||
es: "Colmillo Afilado",
|
||||
it: "Zannaffilata",
|
||||
pt: "Presa Afiada",
|
||||
de: "Scharfe Fänge"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user