mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-21 07:39:54 +00:00
58 lines
1.6 KiB
TypeScript
58 lines
1.6 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Celestial Guardians"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Fomantis",
|
|
fr: "Mimantis",
|
|
es: "Fomantis",
|
|
it: "Fomantis",
|
|
de: "Imantis",
|
|
'pt-br': "Fomantis",
|
|
ko: "짜랑랑"
|
|
},
|
|
|
|
illustrator: "Kagemaru Himeno",
|
|
rarity: "One Diamond",
|
|
category: "Pokemon",
|
|
hp: 60,
|
|
types: ["Grass"],
|
|
|
|
description: {
|
|
en: "Fomantis hates having its naps interrupted. It fires off beams using energy it gathers by bathing in the sun.",
|
|
fr: "Ce Pokémon déteste qu'on le dérange\npendant sa sieste. Il projette des rayons\ngrâce à l'énergie solaire qu'il emmagasine.",
|
|
es: "Detesta que lo molesten cuando echa la siesta. Dispara rayos\nempleando la energía que ha acumulado al tomar el sol.",
|
|
it: "Detesta chiunque disturbi le sue pennichelle\ndiurne. Standosene al sole accumula energia\nche poi rilascia in forma di potenti raggi.",
|
|
de: "Es wird nicht gern beim Mittagsschlaf gestört.\nMithilfe der Energie, die es beim Sonnenbaden\nsammelt, kann es Strahlen abfeuern.",
|
|
'pt-br': "Fomantis odeia que interrompam suas sonecas. Dispara\nraios usando a energia que armazena enquanto toma sol.",
|
|
ko: "낮잠을 방해받는 것을 매우 싫어한다.\n일광욕으로 모은 에너지로\n빔을 발사할 수 있다."
|
|
},
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Leafage",
|
|
fr: "Feuillage",
|
|
es: "Follaje",
|
|
it: "Fogliame",
|
|
de: "Blattwerk",
|
|
'pt-br': "Folhagem",
|
|
ko: "나뭇잎"
|
|
},
|
|
|
|
damage: 20,
|
|
cost: ["Grass"]
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Fire",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 1
|
|
}
|
|
|
|
export default card |