mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-28 02:40:11 +00:00
* feat: Add A1a Signed-off-by: Avior <git@avior.me> * fix: test failing Signed-off-by: Avior <git@avior.me> --------- Signed-off-by: Avior <git@avior.me>
48 lines
740 B
TypeScript
48 lines
740 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Mythical Island"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Salazzle"
|
|
},
|
|
|
|
illustrator: "Mitsuhiro Arita",
|
|
category: "Pokemon",
|
|
hp: 80,
|
|
types: ["Fire"],
|
|
|
|
evolveFrom: {
|
|
en: "Salandit"
|
|
},
|
|
|
|
description: {
|
|
en: "Salazzle makes its opponents light-headed with<br />poisonous gas, then captivates them with alluring<br />movements to turn them into loyal servants."
|
|
},
|
|
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Poison Claws"
|
|
},
|
|
|
|
damage: 30,
|
|
cost: ["Fire"],
|
|
|
|
effect: {
|
|
en: "Your opponent's Active Pokémon is now Poisoned."
|
|
}
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Water",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 1,
|
|
rarity: "One Diamond"
|
|
}
|
|
|
|
export default card |