mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 18:09:19 +00:00
feat: Add Prismatic Evolutions (#637)
This commit is contained in:
41
data/Scarlet & Violet/Prismatic Evolutions/062.ts
Normal file
41
data/Scarlet & Violet/Prismatic Evolutions/062.ts
Normal file
@ -0,0 +1,41 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Prismatic Evolutions"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Houndour",
|
||||
fr: "Malosse",
|
||||
es: "Houndour",
|
||||
pt: "Houndour",
|
||||
it: "Houndour",
|
||||
de: "Hunduster"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Darkness"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Darkness"],
|
||||
|
||||
name: {
|
||||
en: "Playful Kick",
|
||||
fr: "Coup de Pied de Garnement",
|
||||
es: "Patada Juguetona",
|
||||
pt: "Chute Brincalhão",
|
||||
it: "Calcio Briccone",
|
||||
de: "Verspielter Kick"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user