You have several mistakes in the mod.
1. Target condition
You cannot use:
```
IF:target,enemy
```
The correct way is:
```
HIT_ENEMY_TARGETS
```
`HIT_TARGETS` will affect all selected targets, including allies and self. Use `HIT_ENEMY_TARGETS` for enemy-only effects.
2. Wrong target settings for player moves
The skills `dark_protection` and `boss_buff` have incorrect target settings.
I think you intended them to target players/allies instead of enemies. Please add:
```
ally
```
to the `to` area.
3. Missing/wrong mechanical_blowgun resource
There is a spelling error in `mechanical_blowgun`, and its image file is also missing.
4. Wrong male_genitalia move code
You added two different behaviors, so it should be written as:
```
add_moves,ally_cumshot
add_moves,enemy_cumshot
```
But currently it is:
```
add_moves, cumshot
```
The game cannot find this move code.