mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 14:52:09 +00:00
80 lines
2.0 KiB
TypeScript
80 lines
2.0 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Brilliant Stars"
|
|
|
|
const card: Card = {
|
|
dexId: [388],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Grotle",
|
|
fr: "Boskara",
|
|
es: "Grotle",
|
|
it: "Grotle",
|
|
pt: "Grotle",
|
|
de: "Chelcarain"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
hp: 100,
|
|
types: ["Grass"],
|
|
|
|
evolveFrom: {
|
|
en: "Turtwig",
|
|
fr: "Tortipouss",
|
|
es: "Turtwig",
|
|
it: "Turtwig",
|
|
pt: "Turtwig",
|
|
de: "Chelast"
|
|
},
|
|
|
|
stage: "Stage1",
|
|
|
|
abilities: [{
|
|
type: "Ability",
|
|
|
|
name: {
|
|
en: "Sun-Drenched Shell",
|
|
fr: "Carapace Ensoleillée",
|
|
es: "Caparazón Soleado",
|
|
it: "Assolaguscio",
|
|
pt: "Casco Ensolarado",
|
|
de: "Sonnendurchtränkter Panzer"
|
|
},
|
|
|
|
effect: {
|
|
en: "Once during your turn, you may search your deck for a Grass Pokémon, reveal it, and put it into your hand. Then, shuffle your deck.",
|
|
fr: "Une fois pendant votre tour, vous pouvez chercher dans votre deck un Pokémon Grass, le montrer, puis l'ajouter à votre main. Mélangez ensuite votre deck.",
|
|
es: "Una vez durante tu turno, puedes buscar en tu baraja 1 Pokémon Grass, enseñarlo y ponerlo en tu mano. Después, baraja las cartas de tu baraja.",
|
|
it: "Una sola volta durante il tuo turno, puoi cercare nel tuo mazzo un Pokémon Grass, mostrarlo e aggiungerlo alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.",
|
|
pt: "Uma vez durante o seu turno, você poderá procurar por 1 Pokémon Grass no seu baralho, revelá-lo e colocá-lo na sua mão. Em seguida, embaralhe o seu baralho.",
|
|
de: "Einmal während deines Zuges kannst du dein Deck nach 1 Grass-Pokémon durchsuchen, es deinem Gegner zeigen und auf deine Hand nehmen. Mische anschließend dein Deck."
|
|
}
|
|
}],
|
|
|
|
attacks: [{
|
|
cost: ["Grass", "Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Razor Leaf",
|
|
fr: "Tranch'Herbe",
|
|
es: "Hoja Afilada",
|
|
it: "Foglielama",
|
|
pt: "Folha Navalha",
|
|
de: "Rasierblatt"
|
|
},
|
|
|
|
damage: 50
|
|
}],
|
|
|
|
retreat: 3,
|
|
regulationMark: "F",
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |