mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-04 08:32:10 +00:00
121 lines
2.4 KiB
TypeScript
121 lines
2.4 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: "pl1-54",
|
|
localId: 54,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Mightyena",
|
|
fr: "Grahyena",
|
|
},
|
|
|
|
hp: 90,
|
|
|
|
type: [
|
|
Type.DARKNESS,
|
|
],
|
|
|
|
dexId: 262,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/pl/pl1/54/low.png",
|
|
fr: "https://assets.tcgdex.net/fr/pl/pl1/54/low.png",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/pl/pl1/54/high.png",
|
|
fr: "https://assets.tcgdex.net/fr/pl/pl1/54/high.png",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {
|
|
en: "Poochyena",
|
|
fr: "Medhyena",
|
|
},
|
|
|
|
tags: [
|
|
Tag.STAGE1,
|
|
],
|
|
|
|
illustrator: {
|
|
id: 10,
|
|
name: "Kouki Saitou"
|
|
},
|
|
|
|
abilities: [{
|
|
id: 296,
|
|
type: AbilityType.POKEBODY,
|
|
name: {
|
|
en: "Cold Feet",
|
|
fr: "Pieds froids",
|
|
},
|
|
text: {
|
|
en: "If Mightyena is affected by a Special Condition, ignore all Energy necessary to use Mightyena's attacks.",
|
|
fr: "Si Grahyena est affecté par un État Spécial, ignorez toutes les Énergies nécessaires pour utiliser les attaques de Grahyena.",
|
|
}
|
|
}],
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.DARKNESS,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Collude",
|
|
fr: "Association louche",
|
|
},
|
|
text: {
|
|
en: "If you played any Supporter card from your hand during this turn, this attack does 20 damage plus 20 more damage.",
|
|
fr: "Si vous avez joué une carte Supporter de votre main ce tour-ci, cette attaque inflige 20 dégâts plus 20 dégâts supplémentaires.",
|
|
},
|
|
damage: 20
|
|
},{
|
|
cost: [
|
|
Type.DARKNESS,
|
|
Type.DARKNESS,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Desperate Attack",
|
|
fr: "Attaque désespérée",
|
|
},
|
|
text: {
|
|
en: "If Mightyena has less Energy attached to it than the Defending Pokémon, this attack does 50 damage plus 30 more damage.",
|
|
fr: "Si Grahyena possède moins d'Énergie que le Pokémon Défenseur, cette attaque inflige 50 dégâts plus 30 dégâts supplémentaires.",
|
|
},
|
|
damage: 50
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: Type.FIGHTING,
|
|
value: "+20"
|
|
}],
|
|
|
|
resistances: [{
|
|
type: Type.PSYCHIC,
|
|
value: "-20"
|
|
}],
|
|
|
|
|
|
|
|
rarity: Rarity.Uncommon,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Platinum",
|
|
code: "pl1"
|
|
}
|
|
}
|
|
|
|
export default card
|
|
|