1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 04:42:11 +00:00
Florian Bouillon 8ef099273e
fix: Add E-Card French Translations (#166)
* fix: Add E-Card French Translations

Signed-off-by: Avior <github@avior.me>

* fix: Fixed Cards without rarity

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-11-22 19:07:35 +00:00

75 lines
1.3 KiB
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 '../Aquapolis'
const card: Card = {
name: {
en: "Skiploom",
fr: "Floravol"
},
illustrator: "Yuka Morii",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
188,
],
hp: 60,
types: [
"Grass",
],
evolveFrom: {
en: "Hoppip",
},
stage: "Stage1",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Lightweight",
fr: "Poids-plume"
},
effect: {
en: "You pay Colorless less to retreat Skiploom for each Grass Energy attached to it.",
fr: "Vous payez de moins pour faire battre Floravol en retraite pour chaque Énergie qui lui est attachée."
},
},
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Break Powder",
fr: "Poudre cassante"
},
effect: {
en: "Flip a coin. If heads, this attack does 10 damage plus 20 more damage. If tails, this attack does 10 damage and the Defending Pokémon is now Asleep.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 10 dégâts plus 20 dégâts supplémentaires. Si c'est pile, cette attaque inflige 10 dégâts et le Pokémon Défenseur est maintenant Endormi."
},
damage: "10+",
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Water",
value: "-30"
},
],
}
export default card