1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09:19 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

105
cards/sm/sm4/27.ts Normal file
View File

@ -0,0 +1,105 @@
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: "sm4-27",
localId: 27,
// Card informations
name: {
en: "Milotic",
fr: "Milobellus",
},
hp: 120,
type: [
Type.WATER,
],
dexId: 350,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm4/27/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm4/27/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm4/27/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm4/27/high.png",
},
},
evolveFrom: {
en: "Feebas",
fr: "Barpau",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 0,
name: "Kagemaru Himeno"
},
attacks: [{
cost: [
Type.WATER
],
name: {
en: "TLC",
fr: "Soins Dévoués",
},
text: {
en: "Shuffle 1 of your opponent's Benched Pokémon that has any damage counters on it and all cards attached to it into their deck.",
fr: "Mélangez dans le deck de votre adversaire un de ses Pokémon de Banc ayant au moins un marqueur de dégâts et toutes les cartes qui lui sont attachées.",
},
},{
cost: [
Type.WATER,
Type.WATER,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Ocean Cyclone",
fr: "Cyclone Océanique",
},
text: {
en: "This attack does 10 damage to each of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Cette attaque inflige 10 dégâts à chacun des Pokémon de Banc de votre adversaire. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
},
damage: 80
}],
weaknesses: [{
type: Type.GRASS,
value: "×2"
}],
retreat: 2,
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Crimson Invasion",
code: "sm4"
}
}
export default card