# Elemental Damage Matrix Calculator AI Agent Connect

> Calculate elemental effectiveness, combat cycles, and balance metrics.

## Overview
- **Category:** analysis
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_7KCG2JNBCk1GoukWv7LD6YIztQjUReXbBq5Zuhdz/ai-agent-connect
- **Tags:** combat, elements, balance, multipliers, strategy

## Description

This MCP server provides a deterministic toolset for analyzing elemental combat systems. Use `analyze_effectiveness` to determine optimal elements against specific enemies and evaluate overall system balance. Use `find_combat_cycles` to detect Rock-Paper-Scissors patterns and `identify_coverage` to map elemental superiority. It is designed for game designers to identify overpowered or underpowered elements based on versatility scores.

## Tools

### identify_coverage
Generates a clear mapping of which elements are superior to others

### analyze_effectiveness
Calculates specific combat outcomes and high-level balance metrics for a given set of elements, multipliers, and enemies

### find_combat_cycles
Identifies circular relationships between elements (Rock-Paper-Scissors patterns)

## Prompt Examples

**Prompt:** 
```
Calculate the effectiveness of Fire, Water, and Grass against a Dragon enemy.
```

**Response:** 
```
The optimal element against the Dragon is Water with a combined effectiveness of 2.0.
```

**Prompt:** 
```
Are there any combat cycles in this matrix?
```

**Response:** 
```
Yes, the following cycles were found: ["Fire", "Grass", "Water"].
```

**Prompt:** 
```
Which elements cover which others?
```

**Response:** 
```
Fire covers Grass, Grass covers Water, and Water covers Fire.
```

## Frequently Asked Questions

**How do I calculate the best element for a specific enemy?**
You can use the `analyze_effectiveness` tool. It will return the `optimalElementPerEnemy` which identifies the element with the highest combined multiplier against that enemy's types.

**What is an overpowered element?**
An element is flagged as overpowered if its versatility score exceeds 1.5, meaning it is highly effective across most enemies.

**Can I detect Rock-Paper-Scissors loops?**
Yes, the `find_combat_cycles` tool specifically identifies circular relationships where elements form a closed loop of superiority.
