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
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 '../Emerald'
const card: Card = {
name: {
en: "Cacturne ex",
fr: "Cacturne ex"
},
illustrator: "Hikaru Koike",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
332,
],
hp: 110,
types: [
"Grass",
],
evolveFrom: {
en: "Cacnea",
},
suffix: "EX",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Cursed Glare",
fr: "Regard maléfique"
},
effect: {
en: "As long as Cacturne ex is your Active Pokémon, your opponent can't attach any Special Energy cards (except for Darkness and Metal Energy cards) from his or her hand to his or her Active Pokémon.",
fr: "Tant que Cacturne ex est votre Pokémon Actif, votre adversaire ne peut pas attacher de cartes Énergie spéciales (sauf les cartes Énergie et ) de sa main à son Pokémon Actif."
},
},
],
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Psybeam",
fr: "Rafale psy"
},
effect: {
en: "The Defending Pokémon is now Confused.",
fr: "Le Pokémon Défenseur est maintenant Confus."
},
damage: 20,
},
{
cost: [
"Grass",
"Colorless",
"Colorless",
],
name: {
en: "Spike Rend",
fr: "Pointe déchirante"
},
effect: {
en: "If the Defending Pokémon already has any damage counters on it, this attack does 50 damage plus 20 more damage.",
fr: "Si le Pokémon Défenseur possède déjà des marqueurs de dégât, cette attaque inflige 50 dégâts plus 20 dégâts supplémentaires."
},
damage: "50+",
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
}
export default card