英文名字:Cataclysm-DDA
中文译名:大灾变:劫后余生
官方网站:http://en.cataclysmdda.com/
游戏介绍:(via 3DM)
大灾变(Cataclysm)是一款Roguelike游戏,整个游戏发生于末日后的世界。在这个游戏中,生存是非常困难的,你将处于一个非常恶劣的环境中,不但物资匮乏、装备稀缺,而且随处可见食肉的僵尸和各种奇怪甚至畸形的生物。
但是,只有你有足够的谨慎和一点运气,生存下去也不是难事。你可以在森林里静静的埋伏着,用手里的长弓勉强维持自己的生计。你也可以开着一辆破车进城,使用火力扫清前方的障碍。如果你还担心安全问题,那么造一个坚固的堡垒吧,在周围放上陷阱,你便可以高枕无忧了。随着游戏的深入,你玩的时间越长,经验就越丰富,获得的装备越多,相应的,你面对威胁的应变能力也就越强。
在严峻的形势面前,你也会面对许多机遇和挑战,它们将是你改变人生的转折点。这个世界中流传着许多强大的幸存者的故事,他们在灾变之后的辐射中发生了变异,这些变异导致他们的身体和大脑都产生了质的改变。这些突变的表现形式,有的类似于虫子,有的类似于鸟类,有的则类似于鱼类,不管怎样,这些形式都让他们得以更好的生存下去。
与Nethack有类似,只不过Nethack是基于龙与地下城规则的,而CDDA就是末日流、现代流。
另外,CDDA可以制作游戏MOD。
放两张图:
Linux下的安装方法:
http://www.wiki.cataclysmdda.com/index. ... to_compile
First, open the terminal. On Ubuntu, it is accessible under Applications / Accessories. Now, let's install the dependencies we'll need. It may ask you to type in your password or Y to confirm. Do it and continue.
打开终端安装下面几个包:
代码: 全选
sudo apt-get install libncurses5-dev libncursesw5-dev g++ git-core
代码: 全选
git clone git://github.com/TheDarklingWolf/Cataclysm-DDA.git
This'll make a directory called Cataclysm-DDA and pull the source into it. It might take a while.
Type cd Cataclysm-DDA to move into the directory. Now type make to compile it. If it fails, try make clean.
进入源代码的目录,make就可以了。
If it works, try running the game with ./cataclysm. If that also works, you're ready to mod.
编译好之后,输入./cataclysm就可以打开了。
To update the game, move into the game directory and write "git pull". Afterwards, type make clean (which clears all object files and such) and make. There, updated!