mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 00:49:18 +00:00
Added informations (#25)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
58
data/Sword & Shield/Battle Styles/28.ts
Normal file
58
data/Sword & Shield/Battle Styles/28.ts
Normal file
@ -0,0 +1,58 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Battle Styles'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Salazzle",
|
||||
fr: "Malamandre"
|
||||
},
|
||||
|
||||
illustrator: "Shibuzoh.",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Fire"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Salandit",
|
||||
fr: "Tritox"
|
||||
},
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Perplex",
|
||||
fr: "Affolement"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Your opponent’s Active Pokémon is now Confused.",
|
||||
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus."
|
||||
},
|
||||
|
||||
cost: ["Fire"]
|
||||
}, {
|
||||
name: {
|
||||
en: "Derisive Roasting",
|
||||
fr: "Raillerie Roussie"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This attack does 90 damage for each Special Condition affecting your opponent’s Active Pokémon.",
|
||||
fr: "Cette attaque inflige 90 dégâts pour chaque État Spécial affectant le Pokémon Actif de votre adversaire."
|
||||
},
|
||||
|
||||
damage: "90×",
|
||||
cost: ["Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user