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

102
cards/ex/ex14/15.ts Normal file
View File

@ -0,0 +1,102 @@
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-15",
localId: 15,
// Card informations
name: {
en: "Cacturne δ",
},
hp: 80,
type: [
Type.FIGHTING,
],
dexId: 332,
image: {
low: {
en: "https://assets.tcgdex.net/en/ex/ex14/15/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/ex/ex14/15/high.png",
},
},
evolveFrom: {
en: "Cacnea",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 10,
name: "Kouki Saitou"
},
abilities: [{
id: 946,
type: AbilityType.POKEPOWER,
name: {
en: "Spike Storm",
},
text: {
en: "Once during your turn (before your attack), if Cacturne is your Active Pokémon, you may put 1 damage counter on 1 of your opponent's Pokémon that already has any damage counters on it. This power can't be used if Cacturne is affected by a Special Condition.",
}
}],
attacks: [{
cost: [
Type.FIGHTING
],
name: {
en: "Triple Needle",
},
text: {
en: "Choose 3 of your opponent's Pokémon. This attack does 10 damage to each of those Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
},{
cost: [
Type.FIGHTING,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Light Punch",
},
damage: 50
}],
weaknesses: [{
type: Type.FIRE,
value: "×2"
}],
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Crystal Guardians",
code: "ex14"
}
}
export default card