1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-02 07:32:11 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

114 lines
2.1 KiB
TypeScript

import Card from '../../../interfaces/Card'
import Type from '../../../interfaces/Type'
import Tag from '../../../interfaces/Tag'
import Rarity from '../../../interfaces/Rarity'
import AbilityType from '../../../interfaces/AbilityType'
import Category from '../../../interfaces/Category'
const card: Card = {
// ids
id: "pl3-33",
localId: 33,
// Card informations
name: {
en: "Mawile",
fr: "Mysdibule",
},
hp: 70,
type: [
Type.METAL,
],
dexId: 303,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl3/33/low.png",
fr: "https://assets.tcgdex.net/fr/pl/pl3/33/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl3/33/high.png",
fr: "https://assets.tcgdex.net/fr/pl/pl3/33/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 29,
name: "Suwama Chiaki"
},
attacks: [{
cost: [
Type.METAL
],
name: {
en: "Turnaround Standby",
fr: "Demi-tour en standby",
},
text: {
en: "During your next turn, any damage done by Mawile's Swallow or Bite to your opponent's Active Pokémon is increased by 40 (before applying Weakness and Resistance).",
fr: "Lors de votre prochain tour, tous les dégâts infligés par Avale ou Morsure de Mysdibule au Pokémon Actif de votre adversaire sont augmentés de 40 (avant application de la Faiblesse et de la Résistance).",
},
},{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Swallow",
fr: "Avale",
},
text: {
en: "Remove from Mawile the number of damage counters equal to the damage you did to the Defending Pokémon.",
fr: "Retirez à Mysdibule autant de marqueurs de dégât que vous avez infligé de dégâts au Pokémon Défenseur.",
},
damage: 20
},{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Bite",
fr: "Morsure",
},
damage: 30
}],
weaknesses: [{
type: Type.FIRE,
value: "+20"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
retreat: 1,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Supreme Victors",
code: "pl3"
}
}
export default card