1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-03 20:39:55 +00:00

64 lines
917 B
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 '../Darkness Ablaze'
const card: Card = {
name: {
en: "Decidueye",
},
illustrator: "Ryota Murayama",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 140,
types: [
"Grass",
],
evolveFrom: {
en: "Dartrix",
},
abilities: [
{
type: "Ability",
name: {
en: "Deep Forest Camo",
},
effect: {
en: "Prevent all damage done to this Pokémon by attacks from your opponents Pokémon V and Pokémon-GX.",
},
},
],
attacks: [
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Splitting Arrow",
},
effect: {
en: "This attack also does 20 damage to 2 of your opponents Benched Pokémon. (Dont apply Weakness and Resistance for Benched Pokémon.)",
},
damage: 90,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 2,
}
export default card