aboutsummaryrefslogtreecommitdiff
path: root/debug/e_child.lua.X
diff options
context:
space:
mode:
authorAlexander M Pickering <alex@cogarr.net>2024-01-29 16:20:10 -0600
committerAlexander M Pickering <alex@cogarr.net>2024-01-29 16:20:10 -0600
commitc2926c5ec74d7e37da395c8c32a7ff2b4cae7d06 (patch)
treeac2bb208dab1274cdc5e9059ffe014ae19181a4c /debug/e_child.lua.X
downloadfools_rush_in-c2926c5ec74d7e37da395c8c32a7ff2b4cae7d06.tar.gz
fools_rush_in-c2926c5ec74d7e37da395c8c32a7ff2b4cae7d06.tar.bz2
fools_rush_in-c2926c5ec74d7e37da395c8c32a7ff2b4cae7d06.zip
All the files
Diffstat (limited to 'debug/e_child.lua.X')
-rw-r--r--debug/e_child.lua.X25
1 files changed, 25 insertions, 0 deletions
diff --git a/debug/e_child.lua.X b/debug/e_child.lua.X
new file mode 100644
index 0000000..6a53917
--- /dev/null
+++ b/debug/e_child.lua.X
@@ -0,0 +1,25 @@
+Pos Lua >> Moon
+1 1:[ local char = require("char") ] >> 1:[ char = require "char" ]
+23 2:[ local reg = require("ability_reg") ] >> 2:[ reg = require "ability_reg" ]
+51 3:[ require("a_pass") ] >> 3:[ require "a_pass" ]
+69 4:[ local mod = ... ] >> 5:[ mod = ... ]
+80 5:[ mod.char = { ] >> 7:[ mod.char = { ]
+99 6:[ name = "An actual child", ] >> 8:[ name: "An actual child", ]
+123 7:[ cr = 1, ] >> 9:[ cr: 1, ]
+145 8:[ default_position = 1, ] >> 10:[ default_position: 1 ]
+169 10:[ reg.Pass ] >> 11:[ default_abilities: {reg.Pass}, ]
+195 12:[ default_maxhp = 1, ] >> 12:[ default_maxhp: 1, ]
+211 13:[ default_hp = 1, ] >> 13:[ default_hp: 1, ]
+235 14:[ default_maxstamina = 1, ] >> 14:[ default_maxstamina: 1, ]
+256 15:[ default_stamina = 1, ] >> 15:[ default_stamina: 1, ]
+277 16:[ default_maxmana = 0, ] >> 16:[ default_maxmana: 0, ]
+295 17:[ default_mana = 0, ] >> 17:[ default_mana: 0, ]
+307 18:[ sprite = "data/e_child.png", ] >> 18:[ sprite:"data/e_child.png", ]
+352 20:[ print("while selecting action, by abilities were:", self.data.abilities) ] >> 20:[ print("while selecting action, by abilities were:",@data.abilities) ]
+422 21:[ return self.data.abilities[1] ] >> 21:[ @data.abilities[1] ]
+80 23:[ } ] >> 7:[ mod.char = { ]
+453 24:[ for k, v in pairs(mod.char) do ] >> 23:[ for k,v in pairs(mod.char) ]
+471 25:[ mod[k] = v ] >> 24:[ mod[k] = v ]
+443 26:[ end ] >> 23:[ for k,v in pairs(mod.char) ]
+483 27:[ char.enemies[mod.char.name] = mod.char ] >> 26:[ char.enemies[mod.char.name] = mod.char ]
+523 28:[ return mod ] >> 28:[ mod ]