mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 01:49:19 +00:00
100
cards/xy/xy2/70.ts
Normal file
100
cards/xy/xy2/70.ts
Normal file
@ -0,0 +1,100 @@
|
||||
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: "xy2-70",
|
||||
localId: 70,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Druddigon",
|
||||
fr: "Drakkarmin",
|
||||
},
|
||||
|
||||
hp: 110,
|
||||
|
||||
type: [
|
||||
Type.DRAGON,
|
||||
],
|
||||
|
||||
dexId: 621,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy2/70/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy2/70/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy2/70/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy2/70/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 161,
|
||||
name: "Ryota Murayama"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Revenge",
|
||||
fr: "Vendetta",
|
||||
},
|
||||
text: {
|
||||
en: "If any of your Pokémon were Knocked Out by damage from an opponent's attack during his or her last turn, this attack does 70 more damage.",
|
||||
fr: "Si l'un de vos Pokémon a été mis K.O. par les dégâts d'une attaque de votre adversaire pendant son dernier tour, cette attaque inflige 70 dégâts supplémentaires.",
|
||||
},
|
||||
damage: 20
|
||||
},{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.WATER,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Dragon Claw",
|
||||
fr: "Dracogriffe",
|
||||
},
|
||||
damage: 80
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FAIRY,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
rarity: Rarity.RareHolo,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Flashfire",
|
||||
code: "xy2"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user