1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 01:37:52 +00:00
Florian Bouillon 151c00be78
Updated informations (#23)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 20:35:35 +02:00

58 lines
1.0 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../SWSH Black Star Promos'
const card: Card = {
set: Set,
name: {
en: "Alakazam V",
fr: "Alakazam V"
},
illustrator: "Ayaka Yoshida",
rarity: "Common",
category: "Pokemon",
hp: 190,
types: ["Psychic"],
attacks: [{
name: {
en: "Zen Spoon",
fr: "Cuillère Zen"
},
effect: {
en: "Put 3 damage counters on your opponents Pokémon in any way you like.",
fr: "Placez 3 marqueurs de dégâts sur les Pokémon de votre adversaire comme il vous plaît."
},
cost: ["Psychic"]
}, {
name: {
en: "Mind Ruler",
fr: "Contrôle Mental"
},
effect: {
en: "This attack does 30 damage for each card in your opponents hand.",
fr: "Cette attaque inflige 30 dégâts pour chaque carte dans la main de votre adversaire."
},
damage: "30×",
cost: ["Psychic", "Psychic"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1
}
export default card