| tags |
|
|---|
Contains data about spawn body types
: The ID of the body type
: The full name of the body type
string To String
: Same as Name
!!! example
Prints true if a summoned npc is targeted
=== "MQScript"
```
/echo ${Target.Body.Name.Equal[Undead Pet]}`
```
=== "Lua"
```lua
print(mq.TLO.Target.Boddy.Name === 'Undead Pet')
```