1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-21 07:39:54 +00:00
Florian Bouillon b46b2c4fb9
Updated Evolving Skies with attacks and other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-28 16:54:37 +02:00

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