1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-20 11:09:19 +00:00
Files
cards-database/data/Sword & Shield/Evolving Skies/86.ts

64 lines
947 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Evolving Skies'
const card: Card = {
set: Set,
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
name: {
en: "Roggenrola",
fr: "Nodulithe",
es: "Roggenrola",
it: "Roggenrola",
pt: "Roggenrola",
de: "Kiesling"
},
rarity: "Common",
category: "Pokemon",
hp: 70,
types: ["Fighting"],
stage: "Basic",
illustrator: "Tomokazu Komiya",
attacks: [{
name: {
en: "Mud-Slap",
fr: "CoudBoue",
es: "Bofetón Lodo",
it: "Fangosberla",
pt: "Mud-Slap",
de: "Lehmschelle"
},
damage: 10,
cost: ["Fighting"]
}, {
name: {
en: "Rolling Tackle",
fr: "Roulé-Boulé",
es: "Placaje Giro",
it: "Rollazione",
pt: "Rolling Tackle",
de: "Rolltackle"
},
damage: 20,
cost: ["Fighting", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3
}
export default card