mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
46 lines
657 B
TypeScript
46 lines
657 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Temporal Forces"
|
|
|
|
const card: Card = {
|
|
dexId: [744],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Rockruff",
|
|
fr: "Rocabot",
|
|
es: "Rockruff",
|
|
it: "Rockruff",
|
|
pt: "Rockruff",
|
|
de: "Wuffels"
|
|
},
|
|
|
|
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",
|
|
de: "Pfötchenhieb"
|
|
},
|
|
|
|
damage: 10
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "H",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |