1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +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

71 lines
1.6 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: "Ariados",
fr: "Migalos"
},
illustrator: "Shin-ichi Yoshida",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
168,
],
hp: 70,
types: [
"Grass",
],
evolveFrom: {
en: "Spinarak",
},
stage: "Stage1",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Gluey Slime",
fr: "Bave gluante"
},
effect: {
en: "As long as Ariados is in play, each player must pay an additional Colorless to retreat his or her Active Pokémon. Gluey Slime can't make a player pay more than an additional Colorless to retreat a Pokémon, even if there is more than 1 Ariados in play.",
fr: "Tant que Migalos est en jeu, chaque joueur doit payer un supplémentaire pour faire battre en retraite son Pokémon Actif. Bave gluante ne peut pas obliger un joueur à payer plus qu'un supplémentaire pour faire battre en retraite un Pokémon, même s'il y a plus d'un Migalos en jeu."
},
},
],
attacks: [
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Spider Force",
fr: "Arachno-force"
},
effect: {
en: "Flip a coin. If heads, this attack does 20 damage plus 10 more damage. If tails, this attack does 20 damage and the Defending Pokémon is now Paralyzed.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts plus 10 dégâts supplémentaires. Si c'est pile, cette attaque inflige 20 dégâts et le Pokémon Défenseur est maintenant Paralysé."
},
damage: "20+",
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
}
export default card