mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 00:49:18 +00:00
97
cards/ex/ex16/35.ts
Normal file
97
cards/ex/ex16/35.ts
Normal file
@ -0,0 +1,97 @@
|
||||
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: "ex16-35",
|
||||
localId: 35,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Metang",
|
||||
},
|
||||
|
||||
hp: 80,
|
||||
|
||||
type: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
dexId: 375,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/ex/ex16/35/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/ex/ex16/35/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Beldum",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 18,
|
||||
name: "Tomokazu Komiya"
|
||||
},
|
||||
|
||||
abilities: [{
|
||||
id: 8,
|
||||
type: AbilityType.POKEBODY,
|
||||
name: {
|
||||
en: "Clear Body",
|
||||
},
|
||||
text: {
|
||||
en: "Metang can't be affected by any Special Conditions.",
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Extra Comet Punch",
|
||||
},
|
||||
text: {
|
||||
en: "During your next turn, Extra Comet Punch does 30 damage plus 30 more damage.",
|
||||
},
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIRE,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.GRASS,
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Power Keepers",
|
||||
code: "ex16"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user