Add craftable bombs
Add charcoal, saltpeter, black powder, and recipes to build bombs with.master
parent
4d3b35d0de
commit
8839b75f49
33
formulae
33
formulae
|
@ -269,6 +269,17 @@ skill alchemy
|
|||
cauldron cauldron
|
||||
ingred 3 pearl,water of the wise
|
||||
#
|
||||
# black powder
|
||||
Object NONE
|
||||
arch blackpowder
|
||||
chance 40
|
||||
diff 1
|
||||
yield 8
|
||||
exp 100
|
||||
skill alchemy
|
||||
cauldron cauldron
|
||||
ingred 1 charcoal,1 pile of sulphur,6 pile of saltpeter
|
||||
#
|
||||
# Now for basic smithery ingredients -- the bars (made from ores)
|
||||
#
|
||||
#
|
||||
|
@ -520,6 +531,28 @@ skill smithery
|
|||
cauldron forge
|
||||
ingred 4 iron bar,brass bar
|
||||
#
|
||||
# bomb shell
|
||||
Object NONE
|
||||
arch bomb_shell
|
||||
chance 3
|
||||
diff 5
|
||||
exp 500
|
||||
yield 1
|
||||
skill smithery
|
||||
cauldron forge
|
||||
ingred iron bar
|
||||
#
|
||||
# bomb
|
||||
Object NONE
|
||||
arch bomb_unlit
|
||||
chance 3
|
||||
diff 10
|
||||
exp 2000
|
||||
yield 1
|
||||
skill smithery
|
||||
cauldron forge
|
||||
ingred bomb shell,3 pile of black powder
|
||||
#
|
||||
# ----------------
|
||||
# Silvered weapons
|
||||
# ----------------
|
||||
|
|
|
@ -6,3 +6,12 @@ client_type 642
|
|||
type 73
|
||||
identified 1
|
||||
end
|
||||
|
||||
Object charcoal
|
||||
name charcoal
|
||||
face charcoal.111
|
||||
nrof 1
|
||||
weight 100
|
||||
client_type 642
|
||||
type 73
|
||||
end
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 524 B |
|
@ -0,0 +1,4 @@
|
|||
comment Original artwork by Saiapatsu/twiswist, created for Crossfire
|
||||
license cc0
|
||||
licenseurl https://creativecommons.org/publicdomain/zero/1.0/
|
||||
sourcename Saiapatsu
|
|
@ -0,0 +1,3 @@
|
|||
face charcoal.111
|
||||
magicmap black
|
||||
end
|
|
@ -26,6 +26,20 @@ name_pl piles
|
|||
client_type 641
|
||||
end
|
||||
|
||||
Object saltpeter
|
||||
name pile
|
||||
name_pl piles
|
||||
title of saltpeter
|
||||
face salt.111
|
||||
nrof 1
|
||||
material 64
|
||||
materialname saltpeter
|
||||
type 73
|
||||
value 10
|
||||
weight 500
|
||||
client_type 641
|
||||
end
|
||||
|
||||
Object sulphur
|
||||
name pile
|
||||
title of sulphur
|
||||
|
@ -42,6 +56,21 @@ name_pl piles
|
|||
client_type 641
|
||||
end
|
||||
|
||||
Object blackpowder
|
||||
name pile
|
||||
name_pl piles
|
||||
title of black powder
|
||||
face graphite.111
|
||||
nrof 1
|
||||
material 64
|
||||
materialname blackpowder
|
||||
type 73
|
||||
value 15
|
||||
resist_fire -100
|
||||
weight 500
|
||||
client_type 641
|
||||
end
|
||||
|
||||
Object graphite
|
||||
name pile
|
||||
title of graphite
|
||||
|
|
|
@ -1,9 +1,36 @@
|
|||
Object bomb_shell
|
||||
name bomb shell
|
||||
name_pl bomb shells
|
||||
type 79
|
||||
client_type 645
|
||||
material 2
|
||||
face bomb_shell.111
|
||||
weight 3000
|
||||
end
|
||||
|
||||
Object bomb_unlit
|
||||
name bomb
|
||||
name_pl bombs
|
||||
type 163
|
||||
client_type 170
|
||||
material 2
|
||||
is_lightable 1
|
||||
other_arch bomb
|
||||
face bomb_unlit.111
|
||||
weight 4000
|
||||
end
|
||||
|
||||
Object bomb
|
||||
type 102
|
||||
client_type 170
|
||||
subtype 8
|
||||
other_arch explosion
|
||||
face bomb.111
|
||||
animation bomb
|
||||
speed 0.2
|
||||
weight 4000
|
||||
range 3
|
||||
dam 100
|
||||
duration 3
|
||||
attacktype 1
|
||||
end
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
face bomb_shell.111
|
||||
magicmap black
|
||||
end
|
||||
face bomb_unlit.111
|
||||
magicmap black
|
||||
end
|
||||
animation bomb
|
||||
bomb.111
|
||||
bomb.111
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 5.2 KiB |
Binary file not shown.
After Width: | Height: | Size: 5.2 KiB |
Loading…
Reference in New Issue