mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 17:09:19 +00:00
feat: Add Stellar Crown (#533)
This commit is contained in:
54
data/Scarlet & Violet/Stellar Crown/127.ts
Normal file
54
data/Scarlet & Violet/Stellar Crown/127.ts
Normal file
@ -0,0 +1,54 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Stellar Crown"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Cyclizar",
|
||||
fr: "Motorizard",
|
||||
es: "Cyclizar",
|
||||
it: "Cyclizar",
|
||||
pt: "Cyclizar",
|
||||
de: "Mopex"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 110,
|
||||
types: ["Colorless"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Tail Snap",
|
||||
fr: "Coud'Queue Sec",
|
||||
es: "Pinza Cola",
|
||||
it: "Schioccacoda",
|
||||
pt: "Surpresa de Cauda",
|
||||
de: "Schweifhieb"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}, {
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Speed Attack",
|
||||
fr: "Attaque Rapide",
|
||||
es: "Ataque Fugaz",
|
||||
it: "Attacco Veloce",
|
||||
pt: "Ataque em Velocidade",
|
||||
de: "Tempoangriff"
|
||||
},
|
||||
|
||||
damage: 50
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user