1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 14:52:09 +00:00
Florian Bouillon d4be6fa84f
fix: Add Diamond & Pearl French translations (#179)
* fix: Add the two first sets

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

* fix: Add DP, DP Black Star and Mysterious Treasures

Signed-off-by: Avior <github@avior.me>
2021-11-22 18:11:03 +00:00

77 lines
1.2 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Legends Awakened'
const card: Card = {
name: {
en: "Mewtwo",
fr: "Mewtwo",
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
150,
],
hp: 80,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Hypnoblast",
fr: "Hypnoblast",
},
effect: {
en: "The Defending Pokémon is now Asleep.",
fr: "Le Pokémon Défenseur est maintenant Endormi.",
},
damage: 10,
},
{
cost: [
"Psychic",
"Colorless",
"Colorless",
],
name: {
en: "Psychic",
fr: "Psyko",
},
effect: {
en: "Does 40 damage plus 10 more damage for each Energy attached to the Defending Pokémon.",
fr: "Inflige 40 dégâts plus 10 dégâts supplémentaires pour chaque Énergie attachée au Pokémon Défenseur.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Psychic",
value: "+20"
},
],
retreat: 2,
description: {
fr: "Un Pokémon conçu en réorganisant les gènes de Mew. On raconte qu'il s'agit du Pokémon le plus féroce."
}
}
export default card