mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 17:39:18 +00:00
Updated informations (#23)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
54
data/Sword & Shield/SWSH Black Star Promos/SWSH056.ts
Normal file
54
data/Sword & Shield/SWSH Black Star Promos/SWSH056.ts
Normal file
@ -0,0 +1,54 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../SWSH Black Star Promos'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Morpeko V",
|
||||
fr: "Morpeko V"
|
||||
},
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 170,
|
||||
types: ["Lightning"],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Spark",
|
||||
fr: "Étincelle"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This attack also does 20 damage to 1 of your opponent’s Benched Pokémon. (Don’t apply Weakness and Resistance for Benched Pokémon.)",
|
||||
fr: "Cette attaque inflige aussi 20 dégâts à l’un des Pokémon de Banc de votre adversaire. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
en: "Electro Wheel",
|
||||
fr: "Électro Roue"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Discard an Energy from this Pokémon. If you do, switch it with 1 of your Benched Pokémon.",
|
||||
fr: "Défaussez une Énergie de ce Pokémon. Dans ce cas, échangez-le contre l’un de vos Pokémon de Banc."
|
||||
},
|
||||
|
||||
damage: 150,
|
||||
cost: ["Lightning", "Lightning", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user