1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-06 01:07:53 +00: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 '../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