1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00
Florian Bouillon b6fbcc1b77
fix: add EX French translations (#169)
* fix: Add for some sets

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

* Added Sets titles

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

* fix: Finished last EX sets

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

* Change Discord Link text
2021-11-15 16:24:10 +01:00

87 lines
2.2 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 '../Dragon'
const card: Card = {
name: {
en: "Plusle",
fr: "Posipi"
},
illustrator: "Atsuko Nishida",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
311,
],
hp: 50,
types: [
"Lightning",
],
stage: "Basic",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Chain of Events",
fr: "Réactions en chaîne"
},
effect: {
en: "As long as Plusle is your Active Pokémon, whenever your other Active Pokémon, if any, attacks, you may use Cheer On after the first attack (you still need the necessary Energy to use Cheer On). You can't use Cheer On more than once in this way even if your other Active Pokémon has the Chain of Events Poké-Body.",
fr: "Tant que Posipi est votre Pokémon Actif, dès que votre autre Pokémon Actif, si vous en avez un, attaque, vous pouvez utiliser Encouragement après la première attaque (vous avez toujours besoin du nombre d'Énergies nécessaires pour utiliser Encouragement). Vous ne pouvez pas utiliser Encouragement plus d'une fois, même si votre autre Pokémon Actif possède le Poké-Body Réactions en chaîne."
},
},
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Cheer On",
fr: "Encouragement"
},
effect: {
en: "Remove 1 damage counter from each of your Pokémon (including Plusle).",
fr: "Retirez un marqueur de dégât à chacun de vos Pokémon (Posipi inclus)."
},
},
{
cost: [
"Lightning",
"Colorless",
],
name: {
en: "Extra Circuit",
fr: "Circuit supplémentaire"
},
effect: {
en: "Choose 1 of your opponent's Pokémon. This attack does 20 damage to that Pokémon. If you choose Pokémon-ex, this attack does 40 damage instead. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Choisissez un des Pokémon de votre adversaire. Cette attaque lui inflige 20 dégâts. Si vous choisissez un Pokémon-ex, cette attaque inflige 40 dégâts. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon du Banc)."
},
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-30"
},
],
}
export default card