mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 16:19:18 +00:00
feat: Paldean Fates and Temporal Forces (#478)
This commit is contained in:
39
data/Scarlet & Violet/Temporal Forces/089.ts
Normal file
39
data/Scarlet & Violet/Temporal Forces/089.ts
Normal file
@ -0,0 +1,39 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Temporal Forces"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Rockruff",
|
||||
fr: "Rocabot",
|
||||
es: "Rockruff",
|
||||
it: "Rockruff",
|
||||
pt: "Rockruff"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Fighting"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Paw Shake Punch",
|
||||
fr: "Coup de Patte",
|
||||
es: "Sacudir y Dar la Patita",
|
||||
it: "Pugno Qua la Zampa",
|
||||
pt: "Dá Soquinho"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user