mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
59 lines
813 B
TypeScript
59 lines
813 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Paldea Evolved"
|
|
|
|
const card: Card = {
|
|
dexId: [744],
|
|
set: Set,
|
|
|
|
name: {
|
|
fr: "Rocabot",
|
|
en: "Rockruff",
|
|
es: "Rockruff",
|
|
it: "Rockruff",
|
|
pt: "Rockruff",
|
|
de: "Wuffels"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 70,
|
|
types: ["Fighting"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Fighting"],
|
|
|
|
name: {
|
|
fr: "Jet-Pierres",
|
|
en: "Rock Throw",
|
|
es: "Lanzarrocas",
|
|
it: "Sassata",
|
|
pt: "Lançamento de Rocha",
|
|
de: "Steinwurf"
|
|
},
|
|
|
|
damage: 10
|
|
}, {
|
|
cost: ["Fighting", "Colorless", "Colorless"],
|
|
|
|
name: {
|
|
fr: "Morsure",
|
|
en: "Bite",
|
|
es: "Mordisco",
|
|
it: "Morso",
|
|
pt: "Mordida",
|
|
de: "Biss"
|
|
},
|
|
|
|
damage: 40
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "G",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |