> ## Documentation Index
> Fetch the complete documentation index at: https://mintlify.com/SkyFangames/La-Base-de-Sky/llms.txt
> Use this file to discover all available pages before exploring further.

# Ajustes de Batalla

> Configuración del sistema de combate

## Deluxe Battle Script

### Animaciones especiales

```ruby theme={null}
# Mostrar animación de Mega Evolución
Settings::SHOW_MEGA_ANIM = true

# Mostrar animación de Reversión Primigenia
Settings::SHOW_PRIMAL_ANIM = true
```

## Enhanced Battle UI

### Backgrounds por tipo

```ruby theme={null}
# Fondo del Move UI refleja color del tipo
Settings::USE_MOVE_TYPE_BACKGROUNDS = true
```

### Efectividad de tipos

```ruby theme={null}
# Mostrar efectividad para especies nuevas
Settings::SHOW_TYPE_EFFECTIVENESS_FOR_NEW_SPECIES = false
```

<Warning>
  Si está en `true`, mostrará efectividad incluso para Pokémon nunca vistos.
</Warning>

### Prompts de UI

```ruby theme={null}
# 0 = No mostrar
# 1 = Siempre mostrar
# 2 = Mostrar pero ocultar después de 2 segundos
Settings::UI_PROMPT_DISPLAY = 2

# Texto incluido en gráficos
Settings::PROMPT_TEXT_INCLUDED_IN_GRAPHICS = true
```

## Turbo solo en combates

**Agregado en v1.1.2**: Opción de turbo solo durante batallas.

<Tip>
  Esta opción se configura desde el menú de opciones del juego. Útil para acelerar combates sin afectar la velocidad en el overworld.
</Tip>

## Pokémon debilitados

```ruby theme={null}
# Sprites grisados cuando están debilitados
Settings::GREY_OUT_FAINTED = true
```
