1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

77 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Crystal Guardians'
const card: Card = {
name: {
en: "Cacturne δ",
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
332,
],
hp: 80,
types: [
"Fighting",
],
evolveFrom: {
en: "Cacnea",
},
stage: "Stage1",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Spike Storm",
},
effect: {
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: [
"Fighting",
],
name: {
en: "Triple Needle",
},
effect: {
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: [
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Light Punch",
},
damage: 50,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
}
export default card