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

104
cards/hgss/hgss4/19.ts Normal file
View File

@ -0,0 +1,104 @@
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: "hgss4-19",
localId: 19,
// Card informations
name: {
en: "Dugtrio",
fr: "Triopikeur",
},
hp: 80,
type: [
Type.FIGHTING,
],
dexId: 51,
image: {
low: {
en: "https://assets.tcgdex.net/en/hgss/hgss4/19/low.png",
fr: "https://assets.tcgdex.net/fr/hgss/hgss4/19/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/hgss/hgss4/19/high.png",
fr: "https://assets.tcgdex.net/fr/hgss/hgss4/19/high.png",
},
},
evolveFrom: {
en: "Diglett",
fr: "Taupiqueur",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 17,
name: "Shizurow"
},
attacks: [{
cost: [
Type.FIGHTING
],
name: {
en: "Dig",
fr: "Tunnel",
},
damage: 30
},{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Sand Impact",
fr: "Impact sablonneux",
},
text: {
en: "Flip a coin for each Fighting Energy attached to Dugtrio. This attack does 50 damage plus 20 more damage for each heads.",
fr: "Lancez une pièce pour chaque Énergie Fighting attachée à Triopikeur. Cette attaque inflige 50 dégâts plus 20 dégâts supplémentaires pour chaque côté face.",
},
damage: 50
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
}],
resistances: [{
type: Type.LIGHTNING,
value: "-20"
}],
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "HS—Triumphant",
code: "hgss4"
}
}
export default card