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

112 lines
2.0 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: "dp7-46",
localId: 46,
// Card informations
name: {
en: "Piloswine",
fr: "Piloswine",
},
hp: 90,
type: [
Type.FIGHTING,
],
dexId: 221,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp7/46/low.png",
fr: "https://assets.tcgdex.net/fr/dp/dp7/46/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp7/46/high.png",
fr: "https://assets.tcgdex.net/fr/dp/dp7/46/high.png",
},
},
evolveFrom: {
en: "Swinub",
fr: "Marcacrin",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 9,
name: "Mitsuhiro Arita"
},
attacks: [{
cost: [
Type.FIGHTING,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Rouse",
fr: "Éveiller",
},
text: {
en: "Does 20 damage plus 10 more damage for each damage counter on Piloswine. Then, remove 4 damage counters from Piloswine.",
fr: "Inflige 20 dégâts plus 10 dégâts supplémentaires pour chaque marqueur de dégât sur Cochignon. Ensuite, retirez à Cochignon 4 marqueurs de dégât.",
},
damage: 20
},{
cost: [
Type.FIGHTING,
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Overrun",
fr: "Dépassement",
},
text: {
en: "Does 20 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Inflige 20 dégâts à 1 des Pokémon de Banc de votre adversaire. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.)",
},
damage: 60
}],
weaknesses: [{
type: Type.GRASS,
value: "+20"
}],
resistances: [{
type: Type.LIGHTNING,
value: "-20"
}],
retreat: 2,
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Stormfront",
code: "dp7"
}
}
export default card