| 306 | } |
| 307 | |
| 308 | void InitDrunk() |
| 309 | { |
| 310 | int i; |
| 311 | |
| 312 | InitTownerInfo(numtowners, 96, 1, TOWN_DRUNK, 71, 84, 4, 10); |
| 313 | InitQstSnds(numtowners); |
| 314 | towner[numtowners]._tNData = LoadFileInMem("Towners\\Drunk\\TwnDrunk.CEL", NULL); |
| 315 | for (i = 0; i < 8; i++) { |
| 316 | towner[numtowners]._tNAnim[i] = towner[numtowners]._tNData; |
| 317 | } |
| 318 | towner[numtowners]._tNFrames = 18; |
| 319 | NewTownerAnim(numtowners, towner[numtowners]._tNAnim[DIR_S], towner[numtowners]._tNFrames, 3); |
| 320 | strcpy(towner[numtowners]._tName, "Farnham the Drunk"); |
| 321 | numtowners++; |
| 322 | } |
| 323 | |
| 324 | void InitCows() |
| 325 | { |
no test coverage detected