mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 04:42:11 +00:00
* 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>
75 lines
1.3 KiB
TypeScript
75 lines
1.3 KiB
TypeScript
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
|