mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 08:19:17 +00:00
feat: Paldean Fates and Temporal Forces (#478)
This commit is contained in:
51
data/Scarlet & Violet/Temporal Forces/093.ts
Normal file
51
data/Scarlet & Violet/Temporal Forces/093.ts
Normal file
@ -0,0 +1,51 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Temporal Forces"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Rolycoly",
|
||||
fr: "Charbi",
|
||||
es: "Rolycoly",
|
||||
it: "Rolycoly",
|
||||
pt: "Rolycoly"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Fighting"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fighting"],
|
||||
|
||||
name: {
|
||||
en: "Rolling Tackle",
|
||||
fr: "Roulé-Boulé",
|
||||
es: "Placaje Giro",
|
||||
it: "Rollazione",
|
||||
pt: "Golpe de Colisão Rolante"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}, {
|
||||
cost: ["Fighting", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Power Gem",
|
||||
fr: "Rayon Gemme",
|
||||
es: "Joya de Luz",
|
||||
it: "Gemmoforza",
|
||||
pt: "Gema Poderosa"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user