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

71 lines
1.7 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 '../Deoxys'
const card: Card = {
name: {
en: "Claydol",
fr: "Kaorine"
},
illustrator: "Hajime Kusajima",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
344,
],
hp: 80,
types: [
"Fighting",
],
evolveFrom: {
en: "Baltoy",
},
stage: "Stage1",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Psychic Trace",
fr: "Psycho-trace"
},
effect: {
en: "Once during your turn (before your attack), if Claydol is your Active Pokémon, you may shuffle your hand into your deck. Then, draw a number of cards equal to the number of cards in your opponent's hand. This power can't be used if Claydol is affected by a Special Condition.",
fr: "Une seule fois lors de votre tour (avant votre attaque), si Kaorine est votre Pokémon Actif, vous pouvez mélanger votre main avec votre deck. Ensuite, piochez un nombre de cartes égal au nombre de cartes dans la main de votre adversaire. Ce pouvoir ne peut pas être utilisé si Kaorine est affecté par un État Spécial."
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Ancient Mantra",
fr: "Litanie ancestrale"
},
effect: {
en: "If Claydol has any Psychic Energy attached to it, the Defending Pokémon is now Confused. If Claydol has any Fighting Energy attached to it, this attack does 20 damage plus 20 more damage.",
fr: "Si Kaorine possède des Énergies , le Pokémon Défenseur est maintenant Confus. Si Kaorine possède des Énergies , cette attaque inflige 20 dégâts plus 20 dégâts supplémentaires."
},
damage: "20+",
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
}
export default card