#
# Defines the animation graphics of Carnivore Alien
#
<graphic_combine_v1>
  <header>
    format: grid
    store_as: bitmap
    file: gfx/aliens/carnivore.bmp
    id: 10
    grid_x: 64
    grid_y: 64
  </header>
  
  <body>
    # idle
    <g> 0 0 </g>  # 0
    
    # walk
    <g> 0 1 </g>  # 1
    <g> 1 1 </g>
    <g> 2 1 </g>
    <g> 3 1 </g>  # 4
    
    # killed
    <g> 0 3 </g>  # 5
  
    # dying
    <g> 0 2 </g>  # 6
    <g> 1 2 </g>
    <g> 2 2 </g>
    <g> 3 2 </g>  # 9
    
    # attack
    <g> 1 0 </g>  # 10
    <g> 2 0 </g>
    <g> 3 0 </g>  # 12
  </body>  
</graphic_combine_v1>
