1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 16:39:18 +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

94
cards/ex/ex8/11.ts Normal file
View File

@ -0,0 +1,94 @@
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: "ex8-11",
localId: 11,
// Card informations
name: {
en: "Metagross",
},
hp: 100,
type: [
Type.PSYCHIC,
],
dexId: 376,
image: {
low: {
en: "https://assets.tcgdex.net/en/ex/ex8/11/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/ex/ex8/11/high.png",
},
},
evolveFrom: {
en: "Metang",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 55,
name: "Hisao Nakamura"
},
abilities: [{
id: 561,
type: AbilityType.POKEPOWER,
name: {
en: "Super Connectivity",
},
text: {
en: "Once during your turn (before your attack), you may search your discard pile for a Psychic or Metal Energy card and attach it to your Active Pokémon. Then, put 1 damage counter on that Pokémon. This power can't be used if Metagross is affected by a Special Condition.",
}
}],
attacks: [{
cost: [
Type.PSYCHIC,
Type.COLORLESS
],
name: {
en: "Link Blast",
},
text: {
en: "If Metagross and the Defending Pokémon have a different amount of Energy attached to them, this attack's base damage is 40 instead of 70.",
},
damage: 70
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Deoxys",
code: "ex8"
}
}
export default card