Fallout Critter GIFs

Ravaelles

Game-dev Enthusiast
I am recently writing a game in PHP(Laravel)+HTML+CSS+JS in Fallout world.
I've really struggled to extract the GIFs of creatures. I couldn't find direct link anywhere in the forum to get it, so I've decided to put it here:

(187MB) THIS FILE CONTAINS ALL HUMANOID CHARACTER ANIMATIONS AS GIFs
speedy.sh/WQ5rP/Fallout2-all-critter-GIFs.zip

Hope it will allow to save someone ton of time, like I did.

====================
Also here are some useful command-line operations to process images:
Modding Fallout DAT files:

Code:
### Converts BMP files into PNG with transparency ###
# (Using external super-lib called ImageMagick binaries) Adds trasparency to bmp files, but unfortunately loses filenames
convert *.bmp 1.png
convert *.png -transparent #0b000b a.png

### (optional) Make colors more "vivid", saturated ###
# For every file in current directory increases saturation by 40%
FOR %%i IN (*) DO convert "%%i" -modulate 100,140,100 "%%i"

# Converts critter animations from FRM fiels into GIFs. Use `color.pal` that can be found MASTER.dat
frm2gif.exe -f CRITTER.dat -p color.pal -d --fallout2
 
Last edited:
Back
Top