Advertisement
Guest User

battle

a guest
Nov 30th, 2013
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 9.20 KB | None | 0 0
  1. --Mob: Buckley
  2. local Buckley = {
  3.   name = "Buckley",
  4.   HP = 40000,
  5.   ATK = 500,
  6.   skill1Dam = math.random(1,20) * 350,
  7.   skill1Atri = steel,
  8.   skill1Area = false,
  9.   skill1Name = "Silver River",
  10.   skill1Use = false,
  11.   skill2Dam = 3000,
  12.   skill2Atri = steel,
  13.   skill2Area = false,
  14.   skill2Name = "Shining Silver",
  15.   skill2Use = false,
  16.   atri = steel,
  17. }
  18.  
  19.  
  20. --Mob: Angeling
  21. local Angeling = {
  22.   name = "Angeling",
  23.   HP = 8000,
  24.   ATK = 200,
  25.   skill1Dam = 450,
  26.   skill1Atri = light,
  27.   skill1Area = false,
  28.   skill1Name = LexAeterna,
  29.   skill1Use = false,
  30.   skill2Dam = 600,
  31.   skill2Atri = light,
  32.   skill2Area = true,
  33.   skill2Name = "Kyrie Eleison",
  34.   skill2Use = false,
  35.   skill3Dam = 300,
  36.   skill3Atri = normal,
  37.   skill3Area = false,
  38.   skill3Name = "Tackle",
  39.   skill3Use = false,
  40.   atri = light,
  41. }
  42.  
  43. local First = {
  44.   name = "",
  45.   HP = "",
  46.   MP = "",
  47.   ATK = "",
  48.   INT = "",
  49.   LUCK = "",
  50. }
  51.  
  52. local Second = {
  53.   name = "",
  54.   HP = "",
  55.   MP = "",
  56.   ATK = "",
  57.   INT = "",
  58.   LUCK = "",
  59. }
  60.  
  61. local Third = {
  62.   name = "",
  63.   HP = "",
  64.   MP = "",
  65.   ATK = "",
  66.   INT = "",
  67.   LUCK = "",
  68. }
  69.  
  70.  
  71.  
  72.   --Main Code/Functions--
  73. function clear()
  74. term.clear()
  75. term.setCursorPos(1,1)
  76. end
  77.  
  78.  
  79.   --Collor Functions--
  80. function w()
  81. term.setTextColor(1)
  82. end
  83.  
  84. function y()
  85. term.setTextColor(16)
  86. end
  87.  
  88. function b()
  89. term.setTextColor(32768)
  90. end
  91.  
  92. function r()
  93. term.setTextColor(16384)
  94. end
  95.  
  96. function p()
  97. term.setTextColor(1024)
  98. end
  99.  
  100. --Press to continue function
  101. function press()
  102. write ("Press any button to continue!")
  103. os.pullEvent("key")
  104. end
  105.  
  106. --Head Function
  107.  
  108. function Head()
  109. y()
  110. clear()
  111. term.setCursorPos(3,1)
  112. print ("RPG AI v1.0: ")
  113. print ()
  114. term.setCursorPos(1,3)
  115. w()
  116. end
  117.  
  118.  
  119. --Collect Info Function
  120. function collect(obj)
  121. Head()
  122. local player = obj
  123. write (obj.." player: ")
  124. obj.name = read()
  125. print()
  126. write ("Total Health: ")
  127. obj.HP = tonumber(read())
  128. write ("Total Mana: ")
  129. obj.MP = tonumber(read())
  130. write ("Attack Base: ")
  131. obj.ATK = tonumber(read())
  132. write ("Intelligence: ")
  133. obj.INT = tonumber(read())
  134. write ("Luck: ")
  135. obj.LUCK = tonumber(read())
  136. sleep(1)
  137. end
  138.  
  139. function printInfo(obj)
  140. Head()
  141. print (obj.."'s Info:")
  142. print ()
  143. print ("HP: "..obj.HP)
  144. print ("MP: "..obj.MP)
  145. print ("ATK: "..obj.ATK)
  146. print ("INT: "..obj.INT)
  147. print ("Luck: "..obj.LUCK)
  148. print ()
  149. sleep(1)
  150. write ("Everything correct? ")
  151. local correct = read()
  152. if correct == "Yes" or "yes" or "yep" or "correct" then
  153. print ("Done.")
  154. sleep(2)
  155. clear()
  156. elseif correct == "No" or "no" or "nop" or "incorrect" then
  157. print ("Correct what you need.")
  158. press()
  159. collect(obj)
  160. end
  161. end
  162.  
  163.  
  164. collect(First)
  165. printInfo(First)
  166. collect(Second)
  167. printInfo(Second)
  168. collect(Third)
  169. printInfo(Third)
  170.  
  171.  
  172. Head()
  173. print ("Info collected!")
  174. press()
  175. clear()
  176.  
  177. --PlayersName
  178. local players = {first, second, third}
  179.  
  180.  
  181. --Ask for Mob
  182.  
  183. clear()
  184. Head()
  185. write ("Monster: ")
  186. local mob = read()
  187.  
  188.  
  189. --Dices and Mult
  190.  
  191. function random20()
  192. local d20 = math.random(1,20)
  193. return d20
  194. end
  195.  
  196. function random10()
  197. local d10 = math.random(1,10)
  198. return d10
  199. end
  200.  
  201. local crit = 2
  202.  
  203.  
  204. --Battle Function (Buckley)
  205. function StartBattleBuckley()
  206. clear()
  207. Head()
  208. print ("Battle engage!")
  209. print ()
  210. print ("Buckley HP: "..BuckleyH.." HP")
  211. print ("Buckley ATK: "..BuckleyA.." ATK")
  212. print ()
  213. end
  214.  
  215. --Buckley's Visual Interface--
  216. function BuckleyHead()
  217. Head()
  218. p()
  219. write ("[--!Buckley Battle!--]")
  220. w()
  221. print ()
  222. print ("  HP: [/////"..BuckleyH.."/////]")
  223. print ("  ATK: "..BuckleyA)
  224. print ()
  225. print ("----------------------------------------------")
  226. print ()
  227. sleep(1.5)
  228. end
  229.  
  230. function BuckleyHead1()
  231. Head()
  232. p()
  233. write ("[--!Buckley Battle!--]")
  234. y()
  235. write ("   [--!"..first.."'s Attack!--]")
  236. w()
  237. print ()
  238. write ("HP: [/////"..BuckleyH.."/////]   ")
  239. print ("    HP: [/////"..firstHP.."/////]")
  240. write ("  ATK: "..BuckleyA.."    ")
  241. write ("                ATK: "..firstATK)
  242. print ()
  243. print ("----------------------------------------------")
  244. print ()
  245. sleep(0.3)
  246. end
  247.  
  248. function BuckleyHead2()
  249. Head()
  250. p()
  251. write ("[--!Buckley Battle!--]")
  252. y()
  253. write ("   [--!"..second.."'s Attack!--]")
  254. w()
  255. print ()
  256. write ("HP: [/////"..BuckleyH.."/////]   ")
  257. print ("    HP: [/////"..secondHP.."/////]")
  258. write ("  ATK: "..BuckleyA.."    ")
  259. write ("                ATK: "..secondATK)
  260. print ()
  261. print ("----------------------------------------------")
  262. print ()
  263. sleep(0.3)
  264. end
  265.  
  266.  
  267. --Function First Player Attack!
  268.  
  269. local BuckleyH, finalFirstAttack
  270.  
  271. local function FirstAttack()
  272. BuckleyHead1()
  273. sleep(1)
  274. print ("Dice (20): "..d20)
  275. --Critical Hit
  276. for i = 5,9 do
  277. if d10 == i then
  278. print ("Dice (10): "..d10)
  279. print (" ")
  280. sleep(0.5)
  281. y()
  282. print ("Critical Hit!")
  283. w()
  284. print (" ")
  285. sleep(0.3)
  286. local d20 = d20()
  287. local finalFirstAttack = d20()/10 * firstATK * crit
  288. print ("Final attack: "..finalFirstAttack)
  289. print ()
  290. local BuckeyH = BuckleyH - finalFirstAttack
  291. print ()
  292. return finalFirstAttack, Buckleyh
  293. --Super Attack
  294. elseif d10 == 10 then
  295. print ("Dice (10): "..d10)
  296. print (" ")
  297. sleep(0.5)
  298. r()
  299. print ("Super attack!")
  300. w()
  301. print (" ")
  302. sleep(0.3)
  303. local finalFirstAttack = d20p10 * firstATK * 4  
  304. print ("Mult. 4x!")
  305. print ("Final attack: "..finalFirstAttack)
  306. local BuckeyH = BuckleyH - finalFirstAttack
  307. print ()
  308. return finalFirstAttack, Buckleyh
  309. elseif d10<=4 then
  310. print ("Dice (10): "..d10)
  311. print (" ")
  312. sleep(0.3)
  313. local d20 = d20()
  314. local finalFirstAttack = d20p10 * firstATK
  315. print ("Final attack: "..finalFirstAttack)
  316. print ()
  317. local BuckeyH = BuckleyH - finalFirstAttack
  318. print ()
  319. return finalFirstAttack, Buckleyh
  320. end
  321. end
  322. end
  323.  
  324. --Function Second Player Attack
  325.  
  326. local BuckleyH, finalSecondAttack
  327.  
  328. local function SecondAttack()
  329. BuckleyHead2()
  330. sleep(1)
  331. print ("Dice (20): "..d20)
  332. --Critical Hit
  333. for i = 5,9 do
  334. if d10 == i then
  335. print ("Dice (10): "..d10)
  336. print (" ")
  337. sleep(0.5)
  338. y()
  339. print ("Critical Hit!")
  340. w()
  341. print (" ")
  342. sleep(0.3)
  343. local d20 = d20()
  344. local finalSecondAttack = d20()/10 * secondATK * crit
  345. print ("Final attack: "..finalSecondAttack)
  346. print ()
  347. local BuckeyH = BuckleyH - finalSecondAttack
  348. print ()
  349. return finalSecondAttack, Buckleyh
  350. --Super Attack
  351. elseif d10 == 10 then
  352. print ("Dice (10): "..d10)
  353. print (" ")
  354. sleep(0.5)
  355. r()
  356. print ("Super attack!")
  357. w()
  358. print (" ")
  359. sleep(0.3)
  360. local d20 = d20()
  361. local finalSecondAttack = d20()/10 * secondATK * 4
  362. print ("Mult. 4x!")
  363. print ("Final attack: "..finalSecondAttack )
  364. local BuckeyH = BuckleyH - finalSecondAttack
  365. print ()
  366. return finalSecondAttack, Buckleyh
  367. elseif d10<=4 then
  368. print ("Dice (10): "..d10)
  369. print (" ")
  370. sleep(0.3)
  371. local d20 = d20()
  372. local finalSecondAttack = d20()/10 * secondATK * crit
  373. print ("Final attack: "..finalSecondAttack)
  374. local BuckeyH = BuckleyH - finalSecondAttack
  375. print ()
  376. return finalSecondAttack, Buckleyh
  377. end
  378. end
  379. end
  380.  
  381.  
  382.  
  383. --Function Ask (Attack or Skill)
  384.  
  385. function aos()
  386. BuckleyHead()
  387. print (first.."'s turn!")
  388. w()
  389. print (" ")
  390. print ("What will "..first.." do?")
  391. write ("Attack/Skill? ")
  392. local aos = read()
  393. if aos == "Attack" or "Attack Buckley" or "attack" or "melee" or "Melee" then
  394. FirstAttack()
  395. print ()
  396. press()
  397. elseif aos == "Skill" or "skill" or "use skill" or "Use skill" or "use skill at buckley" or "Use skill at Buckley" then
  398. print ("Skill feature not ready!")
  399. else
  400. print ("Please, give a correct command!")
  401. sleep(1.5)
  402. clear()
  403. aos2()
  404. end
  405. end
  406.  
  407. function aos2()
  408. Head()
  409. print (first.." turn!")
  410. print (" ")
  411. print ("What will "..first.." do?")
  412. write ("Attack/Skill? ")
  413. local aos = read()
  414. if aos == "Attack" or "Attack Buckley" or "attack" or "melee" or "Melee" then
  415. clear()
  416. FirstAttack()
  417. elseif aos == "Skill" or "skill" or "use skill" or "Use skill" then
  418. print ("Skill feature not ready!")
  419. else
  420. print ("Please, give a correct command!")
  421. sleep(1.5)
  422. clear()
  423. aos2()
  424. end
  425. end
  426.  
  427. function aos3()
  428. BuckleyHead()
  429. print (second.."'s turn!")
  430. w()
  431. print (" ")
  432. print ("What will "..second.." do?")
  433. write ("Attack/Skill? ")
  434. local aos = read()
  435. if aos == "Attack" or "Attack Buckley" or "attack" or "melee" or "Melee" then
  436. SecondAttack()
  437. --Here
  438. press()
  439. elseif aos == "Skill" or "skill" or "use skill" or "Use skill" or "use skill at buckley" or "Use skill at Buckley" then
  440. print ("Skill feature not ready!")
  441. else
  442. print ("Please, give a correct command!")
  443. sleep(1.5)
  444. clear()
  445. aos2()
  446. end
  447. end
  448.  
  449. function aos4()
  450. Head()
  451. print (second.." turn!")
  452. print (" ")
  453. print ("What will "..second.." do?")
  454. write ("Attack/Skill? ")
  455. local aos = read()
  456. if aos == "Attack" or "Attack Buckley" or "attack" or "melee" or "Melee" then
  457. clear()
  458. SecondAttack()
  459. elseif aos == "Skill" or "skill" or "use skill" or "Use skill" then
  460. print ("Skill feature not ready!")
  461. else
  462. print ("Second attempt incorrect!")
  463. print ("Restarting program!")
  464. sleep(1.5)
  465. shell.run("battle")
  466. end
  467. end
  468.  
  469. --Buckley Math Result First Attack
  470. function BuckleyAttackResult1()
  471.   local FirstAttackDam = FirstAttack()
  472.   local BuckleyH = BuckleyH - FirstAttack()
  473.   print ("Buckley HP: "..BuckleyH)
  474.   print ("Buckley ATK: "..BuckleyATK)
  475. end
  476.  
  477. --Asking for mob
  478.  
  479.  
  480.  
  481. if mob == "Buckley" then
  482. print ()
  483. print ("Loading Buckley...")
  484. sleep(1.5)
  485. clear()
  486. StartBattleBuckley()
  487. aos()
  488.  
  489.  
  490.  
  491. elseif mob == "Angeling" then
  492. clear()
  493. print ("Angeling not implemented yet.")
  494. else
  495. print ("Database does not contain that mob!")
  496. print ("Update it, doing 'edit battle'.")
  497. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement