mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
72 lines
1.1 KiB
TypeScript
72 lines
1.1 KiB
TypeScript
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: "Coud'Boue",
|
||
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,
|
||
|
||
description: {
|
||
en: "When it detects a noise, it starts to move. The energy core inside it makes this Pokémon slightly warm to the touch."
|
||
},
|
||
|
||
dexId: [524],
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card
|