I’m the only programmer in a different world~ The knowledge of my previous life, reincarnated and revived, is demon king class. I was abandoned by my family, but I feel like the law of the world liked me. Even if you asked me to come back, it would be too late. Strongest matchless with programmed spells~

Episode 33: Cathode, Stone, and Healing Magic



It’s the second round.

 The opponent is a cathode.

 As far as I’ve seen the fight with the student council president, Anode, he’s not my enemy.

 But let’s not let down our guard.

“Kyaa, Cathode-kun, do your best.”

“I turned and laughed.”

“Cathode-kun is waving.”

“Idiot, you’re waving at me.”

 I have a cathode.

 Although not as beautiful as the student council president Anode, she is certainly beautiful.

“Are you ready? Let’s begin.”

 At the first signal, the cathode approached.

“Let’s go. My fist hurts. [Water polo generation]”

 He wears a water polo on his right fist like a boxing glove.

 Damn it, I’m not very athletic.

 Activate the barrier magic tool.

 and.

“[Fireball generation]”

 Shoot a fireball above the cathode.

 Cathode topcuts with his right hand to negate the fireball.

“Then [electric shock generation]”

 Generated 10 electric shocks near Cathode’s body.

 This time, Cathode threw a punch with her left hand and turned around, erasing the electricity.

 Hmm, maybe a magic tool.

 I wonder if it will extinguish the electric shock.

 I wonder how it works.

 Too bad, I allowed it to get close to the cathode.

 My hands are revealed.

 Oh my God

 There are still many trump cards.

 Cathode touched the magic tool attached to her waist.

 What, activation failure?

“Tight, behind!”

 I realized the situation when I heard Myra’s voice.

 I put up a barrier with a magic tool behind me.

“[Stone pebbles, 100 shots].

 I visited one of the trump cards, 100 stone pebbles.

 Cathode ate it straight.

 Yellow screams fly from the girls in the audience.

“Hey, it hurts. Please stop the magic.”

“Winner, Tight”

“Bad bad”

 I panicked and stopped the magic.

 Let me explain the magic this time.

extern MAGIC *stone_make(float mana);

extern void magic_straight(MAGIC *mp,char *orbit,int orbit_size);

extern void magic_move(MAGIC *mp,char *orbit,int orbit_size);

extern int mclose(MAGIC *mp);

void main(void)

{

 char orbit[10]; /*10cm orbit data*/

 int i;

 MAGIC *mp; /*Magic definition*/

 for(i=0;i<100;i++){

  mp=stone_make(0.000001); /* make a pebble */

  magic_straight(mp,orbit,sizeof(orbit)); /*Insert straight orbit data*/

  magic_move(mp,orbit,sizeof(orbit)); /*Move the pebble 10 cm*/

 }

 mclose(mp); /*Magic end processing*/

}

 After moving a pebble 10 cm, it flies due to inertia.

 It’s a magic that spits out pebbles like a machine gun.

 The cathode is a little more painful.

 His skin was red in places from being hit by stone debris.

 Especially the left and right arms are terrible.

 blood is dripping

 Sorry Cathode, you went too far.

 I want to heal it.

 That’s magic.

#include

#include

extern void time_wait(long time_ms);

void main(void)

{

 FILE *fpi,*fpo; /*definition of field*/

 int i;

 fpi=fopen(“Sochikakurashii.body”,”r”); /*Open the cathode body in read mode*/

 fpo=fopen(“temp”,”w”); /*Open temporary body by writing*/

 i=getc(fpi); /*Enter body data*/

 while(i != EOF){ /*Loop until data in body is finished*/

  if(i & DAMAGE_FLAG !=0){ /*Determine whether it is a scratch*/

   i=i-DAMAGE_FLAG; /*Heal the wound*/

  }

  putc(i,fpo); /* output temporary data */

  i=getc(fpi); /*Enter body data*/

 }

 putc(i,fpo); /* output temporary data */

 fclose(fpi); /*Close*/

 fclose(fpo); /*Close*/

 system(“copy temp sochikakurashii.body”); /*Overwrite the body with the output temporary data*/

 system(“del temp”); /* delete temporary data */

 time_wait(6000); /*Wait for 1 minute*/

}

 What do you think about this?

 I tried running it.

 As if it were a lie, the cathode bleeding stopped.

 I thought the wound would return to normal once the magic was lifted, but that doesn’t seem to be the case.

 Adding and subtracting seem to have different effects.

 When it comes to muscle strength, I forcibly increased it.

 The bleeding stopped, but the scar remained.

 This method doesn’t seem to restore damaged parts.

 Is it just a first aid measure?

 Thus ended the third day of the ranking competition.


Tip: You can use left, right, A and D keyboard keys to browse between chapters.