1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-23 04:19:18 +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

108
cards/bw/bw8/28.ts Normal file
View File

@ -0,0 +1,108 @@
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: "bw8-28",
localId: 28,
// Card informations
name: {
en: "Mamoswine",
fr: "Mammochon",
},
hp: 150,
type: [
Type.WATER,
],
dexId: 473,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw8/28/low.png",
fr: "https://assets.tcgdex.net/fr/bw/bw8/28/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw8/28/high.png",
fr: "https://assets.tcgdex.net/fr/bw/bw8/28/high.png",
},
},
evolveFrom: {
en: "Piloswine",
fr: "Cochignon",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 28,
name: "match"
},
attacks: [{
cost: [
Type.WATER,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Frost Stone",
fr: "Roc Gelé",
},
text: {
en: "Flip a coin. If heads, this attack does 20 more damage and the Defending Pokémon is now Paralyzed.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts supplémentaires et le Pokémon Défenseur est maintenant Paralysé.",
},
damage: 50
},{
cost: [
Type.WATER,
Type.WATER,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Continuous Headbutt",
fr: "Coup d'Boule Sans Fin",
},
text: {
en: "Flip a coin until you get tails. This attack does 90 damage times the number of heads.",
fr: "Lancez une pièce jusqu'à ce que vous obteniez un côté pile. Cette attaque inflige 90 dégâts multipliés par le nombre de côtés face.",
},
damage: 90
}],
weaknesses: [{
type: Type.METAL,
value: "×2"
}],
retreat: 4,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Plasma Storm",
code: "bw8"
}
}
export default card