mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
101 lines
1.7 KiB
TypeScript
101 lines
1.7 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: "swsh1-9",
|
||
localId: 9,
|
||
|
||
dexId: 731,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Dhelmise V",
|
||
fr: "Sinistrail V",
|
||
},
|
||
|
||
hp: 220,
|
||
|
||
type: [
|
||
Type.GRASS,
|
||
],
|
||
|
||
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/swsh/swsh1/9/low.png",
|
||
fr: "https://assets.tcgdex.net/fr/swsh/swsh1/9/low.png",
|
||
}
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.BASIC,
|
||
Tag.V,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 7,
|
||
name: "Eske Yoshinob"
|
||
},
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.GRASS
|
||
],
|
||
name: {
|
||
en: "Anchor Anger",
|
||
fr: "Colère Ancrée",
|
||
},
|
||
text: {
|
||
en: "If any of your Grass Pokémon were Knocked Out by damage from an opponent’s attack during their last turn, this attack does 90 more damage.",
|
||
fr: "Si l’un de vos Pokémon Plante a été mis K.O. par les dégâts d’une attaque de votre adversaire lors de son dernier tour, cette attaque inflige 90 dégâts supplémentaires.",
|
||
},
|
||
damage: "30+"
|
||
},{
|
||
cost: [
|
||
Type.GRASS,
|
||
Type.GRASS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Giga Hammer",
|
||
fr: "Giga Marteau",
|
||
},
|
||
text: {
|
||
en: "During your next turn, this Pokémon can't use Giga Hammer.",
|
||
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas utiliser Giga Marteau.",
|
||
},
|
||
damage: 200
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FIRE,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 2,
|
||
|
||
rarity: Rarity.RareV,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Sword & Shield",
|
||
code: "swsh1"
|
||
}
|
||
}
|
||
|
||
export default card
|