mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 08:39:17 +00:00
Added informations (#25)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
59
data/Sword & Shield/Battle Styles/100.ts
Normal file
59
data/Sword & Shield/Battle Styles/100.ts
Normal file
@ -0,0 +1,59 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Battle Styles'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Mawile",
|
||||
fr: "Mysdibule"
|
||||
},
|
||||
|
||||
illustrator: "kawayoo",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Metal"],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Powerful Vise",
|
||||
fr: "Étau Costaud"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, your opponent’s Active Pokémon is now Paralyzed.",
|
||||
fr: "Lancez une pièce. Si c’est face, le Pokémon Actif de votre adversaire est maintenant Paralysé."
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Metal"]
|
||||
}, {
|
||||
name: {
|
||||
en: "Piercing Strike",
|
||||
fr: "Coup Transperçant"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This attack’s damage isn’t affected by Weakness or Resistance, or by any effects on your opponent’s Active Pokémon.",
|
||||
fr: "Les dégâts de cette attaque ne sont pas affectés par la Faiblesse, la Résistance ou tout autre effet en action sur le Pokémon Actif de votre adversaire."
|
||||
},
|
||||
|
||||
damage: 100,
|
||||
cost: ["Colorless", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Grass",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user