home *** CD-ROM | disk | FTP | other *** search
/ hobbes.nmsu.edu 2008 / 2008-06-02_hobbes.nmsu.edu.zip / new / scummc-0.2.0-os2.zip / ScummC / examples / openquest / costumes / ufo.scost < prev    next >
Encoding:
Text File  |  2008-04-06  |  1.3 KB  |  67 lines

  1. /* ScummC
  2.  * Copyright (C) 2008  Alban Bedel, Gerrit Karius
  3.  *
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License
  6.  * as published by the Free Software Foundation; either version 2
  7.  * of the License, or (at your option) any later version.
  8.  
  9.  * This program is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  * GNU General Public License for more details.
  13.  
  14.  * You should have received a copy of the GNU General Public License
  15.  * along with this program; if not, write to the Free Software
  16.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  17.  *
  18.  */
  19.  
  20. palette([224-255]);
  21.  
  22.  
  23.  
  24. picture ufo = {
  25.     glob = "../graphics/ufo/ufo_??.bmp",
  26.     position = { -40, -56 }
  27. };
  28.  
  29.  
  30.  
  31. limb body = {
  32.     ufo00, ufo01 // 0-1
  33.  
  34. };
  35.  
  36.  
  37.  
  38. anim stand = {
  39.     S = { body([0-1]) LOOP };
  40.     E = { body([0-1]) LOOP };
  41. };
  42.  
  43. anim init = {
  44.     S = { body([0-1]) LOOP };
  45.     E = { body([0-1]) LOOP };
  46. };
  47.  
  48. anim talkStart = {
  49.     S = { body([0-1]) LOOP };
  50.     E = { body([0-1]) LOOP };
  51. };
  52.  
  53. anim talkStop = {
  54.     S = { body([0-1]) LOOP };
  55.     E = { body([0-1]) LOOP };
  56. };
  57.  
  58. anim walk = {
  59.     S = { body([0-1]) LOOP };
  60.     E = { body([0-1]) LOOP };
  61. };
  62.  
  63.  
  64.  
  65.  
  66.  
  67.