mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 08:59:18 +00:00
99
cards/ex/ex13/1.ts
Normal file
99
cards/ex/ex13/1.ts
Normal file
@ -0,0 +1,99 @@
|
||||
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: "ex13-1",
|
||||
localId: 1,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Armaldo δ",
|
||||
},
|
||||
|
||||
hp: 110,
|
||||
|
||||
type: [
|
||||
Type.FIGHTING,
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
dexId: 348,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/ex/ex13/1/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/ex/ex13/1/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Anorith",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE2,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 8,
|
||||
name: "Masakazu Fukuda"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Delta Edge",
|
||||
},
|
||||
text: {
|
||||
en: "If you have any Supporter cards in play, this attack's base damage is 20 instead of 70.",
|
||||
},
|
||||
damage: 70
|
||||
},{
|
||||
cost: [
|
||||
Type.FIGHTING,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Fossil Charge",
|
||||
},
|
||||
text: {
|
||||
en: "You may discard a Claw Fossil, Mysterious Fossil, Root Fossil, or Holon Fossil from your hand. If you do, choose 1 of your opponent's Benched Pokémon and do 30 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||
},
|
||||
damage: 50
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.GRASS,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.RareHolo,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Holon Phantoms",
|
||||
code: "ex13"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user