mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 08:39:17 +00:00
95
cards/ecard/ecard3/14.ts
Normal file
95
cards/ecard/ecard3/14.ts
Normal file
@ -0,0 +1,95 @@
|
||||
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: "ecard3-14",
|
||||
localId: 14,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Kabutops",
|
||||
},
|
||||
|
||||
hp: 90,
|
||||
|
||||
type: [
|
||||
Type.FIGHTING,
|
||||
],
|
||||
|
||||
dexId: 141,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/ecard/ecard3/14/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/ecard/ecard3/14/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Kabuto",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE2,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 10,
|
||||
name: "Kouki Saitou"
|
||||
},
|
||||
|
||||
abilities: [{
|
||||
id: 921,
|
||||
type: AbilityType.POKEBODY,
|
||||
name: {
|
||||
en: "Primal Aura",
|
||||
},
|
||||
text: {
|
||||
en: "As long as Kabutops is your Active Pokémon, neither player can play Basic Pokémon or Evolution cards from his or her hand to evolve Benched Pokémon.",
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.FIGHTING,
|
||||
Type.FIGHTING,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Dual Cut",
|
||||
},
|
||||
text: {
|
||||
en: "Flip 2 coins. This attack does 50 damage times the number of heads.",
|
||||
},
|
||||
damage: 50
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.GRASS,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Skyridge",
|
||||
code: "ecard3"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user