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:
58
data/Sword & Shield/SWSH Black Star Promos/SWSH083.ts
Normal file
58
data/Sword & Shield/SWSH Black Star Promos/SWSH083.ts
Normal 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 opponent’s 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 opponent’s 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
|
Reference in New Issue
Block a user