From 884e108eac4efc1076a7de87315be33f43cb9d30 Mon Sep 17 00:00:00 2001 From: dg <dg@51575b47-30f0-44d4-a5cc-537603b46e54> Date: Fri, 2 Nov 2012 22:32:04 +0000 Subject: [PATCH] Summertide has defense & armour git-svn-id: http://svn.net-core.org/repos/t-engine4@5774 51575b47-30f0-44d4-a5cc-537603b46e54 --- .../data/general/objects/world-artifacts.lua | 4 ++++ src/fov/fov.c | 23 +++++++++++++++---- src/fov/fov.h | 22 +++++++++++++++--- 3 files changed, 42 insertions(+), 7 deletions(-) diff --git a/game/modules/tome/data/general/objects/world-artifacts.lua b/game/modules/tome/data/general/objects/world-artifacts.lua index c8cb9a271b..9567d3d965 100644 --- a/game/modules/tome/data/general/objects/world-artifacts.lua +++ b/game/modules/tome/data/general/objects/world-artifacts.lua @@ -4045,6 +4045,10 @@ newEntity{ base = "BASE_SHIELD", melee_project = {[DamageType.RANDOM_BLIND]=20}, }, wielder = { + combat_armor = 5, + combat_def = 17, + combat_def_ranged = 17, + fatigue = 12, combat_mindpower = 8, combat_mentalresist=18, blind_immune=1, diff --git a/src/fov/fov.c b/src/fov/fov.c index 2d818b27b7..01924274d4 100644 --- a/src/fov/fov.c +++ b/src/fov/fov.c @@ -1,8 +1,23 @@ /* - * Copyright (C) 2006, Greg McIntyre - * All rights reserved. See the file named COPYING in the distribution - * for more details. - */ + TE4 - T-Engine 4 + Copyright (C) 2009, 2010, 2011, 2012 Nicolas Casalini + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. + + Nicolas Casalini "DarkGod" + darkgod@te4.org +*/ #include <stdlib.h> #include <string.h> diff --git a/src/fov/fov.h b/src/fov/fov.h index 0e1e159c23..63477bb0fb 100644 --- a/src/fov/fov.h +++ b/src/fov/fov.h @@ -1,7 +1,23 @@ /* - * Copyright (C) 2006-2007, Greg McIntyre. All rights reserved. See the file - * named COPYING in the distribution for more details. - */ + TE4 - T-Engine 4 + Copyright (C) 2009, 2010, 2011, 2012 Nicolas Casalini + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. + + Nicolas Casalini "DarkGod" + darkgod@te4.org +*/ /** * \mainpage Field of View Library -- GitLab