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

111
cards/ex/ex14/89.ts Normal file
View File

@ -0,0 +1,111 @@
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: "ex14-89",
localId: 89,
// Card informations
name: {
en: "Aggron ex",
},
hp: 150,
type: [
Type.METAL,
],
dexId: 306,
image: {
low: {
en: "https://assets.tcgdex.net/en/ex/ex14/89/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/ex/ex14/89/high.png",
},
},
evolveFrom: {
en: "Lairon",
},
tags: [
Tag.EX,
],
illustrator: {
id: 1,
name: "Ryo Ueda"
},
abilities: [{
id: 756,
type: AbilityType.POKEBODY,
name: {
en: "Intimidating Armor",
},
text: {
en: "As long as Aggron ex is your Active Pokémon, your opponent's Basic Pokémon can't attack or use any Poké-Powers or Poké-Bodies.",
}
}],
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Split Bomb",
},
text: {
en: "Choose 2 of your opponent's Pokémon. This attack does 30 damage to each of them. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
},{
cost: [
Type.METAL,
Type.METAL,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Mega Burn",
},
text: {
en: "During your next turn, Aggron ex can't use Mega Burn.",
},
damage: 100
}],
weaknesses: [{
type: Type.FIRE,
value: "×2"
}],
resistances: [{
type: Type.GRASS,
value: "-30"
}],
rarity: Rarity.RareHoloEX,
category: Category.POKEMON,
set: {
name: "Crystal Guardians",
code: "ex14"
}
}
export default card