1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 01:49:19 +00:00

Updated informations (#23)

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2021-05-26 20:35:35 +02:00
committed by GitHub
parent ef2d099e6e
commit 151c00be78
820 changed files with 9255 additions and 2679 deletions

View File

@ -0,0 +1,58 @@
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