mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 12:52:13 +00:00
62 lines
959 B
TypeScript
62 lines
959 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Shining Fates'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
fr: "Rongourmand",
|
||
en: "Skwovet",
|
||
es: "Skwovet",
|
||
it: "Skwovet",
|
||
pt: "Skwovet",
|
||
de: "Raffel"
|
||
},
|
||
|
||
illustrator: "Naoki Saito",
|
||
rarity: "Shiny rare",
|
||
category: "Pokemon",
|
||
hp: 70,
|
||
types: ["Colorless"],
|
||
|
||
attacks: [{
|
||
name: {
|
||
fr: "Charge",
|
||
en: "Tackle",
|
||
es: "Placaje",
|
||
it: "Azione",
|
||
pt: "Investida",
|
||
de: "Tackle"
|
||
},
|
||
|
||
damage: 10,
|
||
cost: ["Colorless"]
|
||
}, {
|
||
name: {
|
||
fr: "Morsure",
|
||
en: "Bite",
|
||
es: "Mordisco",
|
||
it: "Morso",
|
||
pt: "Mordida",
|
||
de: "Biss"
|
||
},
|
||
|
||
damage: 20,
|
||
cost: ["Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "D",
|
||
stage: "Basic",
|
||
|
||
description: {
|
||
en: "Found throughout the Galar region, this Pokémon becomes uneasy if its cheeks are ever completely empty of berries."
|
||
}
|
||
}
|
||
|
||
export default card |