mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-02 15:42:11 +00:00
107 lines
1.8 KiB
TypeScript
107 lines
1.8 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-70",
|
|
localId: 70,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Milotic",
|
|
fr: "Milobellus",
|
|
},
|
|
|
|
hp: 90,
|
|
|
|
type: [
|
|
Type.WATER,
|
|
],
|
|
|
|
dexId: 350,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/pl/pl3/70/low.png",
|
|
fr: "https://assets.tcgdex.net/fr/pl/pl3/70/low.png",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/pl/pl3/70/high.png",
|
|
fr: "https://assets.tcgdex.net/fr/pl/pl3/70/high.png",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {
|
|
en: "Feebas",
|
|
fr: "Barpau",
|
|
},
|
|
|
|
tags: [
|
|
Tag.STAGE1,
|
|
],
|
|
|
|
illustrator: {
|
|
id: 30,
|
|
name: "Hajime Kusajima"
|
|
},
|
|
|
|
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.WATER,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Cleansing Ring",
|
|
fr: "Cercle nettoyant",
|
|
},
|
|
text: {
|
|
en: "You may discard 2 cards from your hand. If you do, remove 4 damage counters from 1 of your Pokémon.",
|
|
fr: "Vous pouvez défausser 2 cartes de votre main. Retirez alors à 1 de vos Pokémon 4 marqueurs de dégât.",
|
|
},
|
|
damage: 20
|
|
},{
|
|
cost: [
|
|
Type.WATER,
|
|
Type.COLORLESS,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Scale Blow",
|
|
fr: "Coup d'écaille",
|
|
},
|
|
text: {
|
|
en: "Does 90 damage minus 10 damage for each card in your hand.",
|
|
fr: "Inflige 90 dégâts moins 10 dégâts pour chaque carte se trouvant dans votre main.",
|
|
},
|
|
damage: 90
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: Type.LIGHTNING,
|
|
value: "+20"
|
|
}],
|
|
|
|
|
|
|
|
retreat: 1,
|
|
|
|
rarity: Rarity.Uncommon,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Supreme Victors",
|
|
code: "pl3"
|
|
}
|
|
}
|
|
|
|
export default card
|
|
|