1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +00:00

Initial Database

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-19 16:19:09 +01:00
commit be94e712b8
12302 changed files with 1142705 additions and 0 deletions

113
cards/pl/pl3/33.ts Normal file
View File

@ -0,0 +1,113 @@
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