1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-21 03:29:17 +00:00
Files
cards-database/data/Sun & Moon/SM Black Star Promos/SM73.ts
Florian Bouillon f4af0d04be Make Each Promos Series Names unique to be clearly identifiable (#15)
* Changed folder and the automatics imports changes

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>

* Fixed SM promos missing the correct set

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-04-29 12:04:12 +02:00

72 lines
1.2 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 '../SM Black Star Promos'
const card: Card = {
name: {
en: "Salazzle",
fr: "Malamandre",
},
illustrator: "Shin Nagasawa",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
758,
],
hp: 110,
types: [
"Psychic",
],
evolveFrom: {
en: "Salandit",
fr: "Tritox",
},
stage: "Stage1",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Nasty Plot",
fr: "Machination",
},
effect: {
en: "Search your deck for up to 2 cards and put them into your hand. Then, shuffle your deck.",
fr: "Cherchez jusquà 2 cartes dans votre deck et ajoutez-les à votre main. Mélangez ensuite votre deck.",
},
},
{
cost: [
"Psychic",
],
name: {
en: "Severe Poison",
fr: "Poison Violent",
},
effect: {
en: "Your opponent's Active Pokémon is now Poisoned. Put 4 damage counters instead of 1 on that Pokémon between turns.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné. Placez 4 marqueurs de dégâts au lieu dun sur le Pokémon ciblé entre chaque tour.",
},
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 1,
}
export default card