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 6 Goblin subjugation, overkill, and calculation



Currently, we are monitoring the goblins coming out of the forest near the field.

“I’m coming.”

“Alright, let’s go fireball.”

 Releases a fireball without chanting.

“Gugyaar”

 Goblins are hit by fireballs.

 It’s a shame.

 The goblins fled, perhaps thinking they were invincible.

“Don’t run away.”

 Shoot a fireball.

 The fireball doesn’t hit the goblin, which runs away in a zigzag pattern.

 However, I don’t feel like my magical power has decreased.

 I can still go.

“It’s sweet.”

 Myra ran off.

 Myra caught up with the goblin and slashed at the nape of its neck.

 Green blood spurted out and the goblin died.

 After all, it’s Myemon and Harita.

 Myra stabbed the goblin’s chest with a dagger and scooped out a red pebble less than a centimeter in size.

“What is that?”

“It’s a magic stone. This is the only material that can be used to make money for goblins. I’ll take my ears as proof of subjugation.”

“By the way, how much can magic stones sell for?”

“One copper coin.”

“It’s cheap.”

“If you have a weapon, you can easily hunt them. Honestly, if you don’t have money from subjugation requests, you won’t be able to do it.”

“Can I get a magic stone?”

“Yeah”

 I pick up the magic stone and wipe the green blood.

 Is this a magic stone?

 Move the magic power to your fingertips and put it in the magic stone.

 I could feel that magical power was being sucked into me.

“Magic stones can be used as materials for magic tools.”

“Yeah. I don’t know how to make it though.”

 I’ll ask someone how to make magic tools later.

 More than that, it’s no good if you seem like you’re having a hard time against goblins.

 I have to develop more amazing magic.

extern void fireball(int size_cm,int speed_km);

void main(void)

{

 fireball(100,200);

}

 How about this.

 But 10 times the size means 1000 times the volume.

 If you use 1000 times more magical power, you won’t be able to hit many shots.

 Well, what happened?

 Is it complicated because I think of magic in terms of size?

 It’s faster to think in terms of magic.

extern void fireball(int mana,int Mobile_fuel_mana);

void main(void)

{

 fireball(10,1);

}

 If you do this, the magic power used for movement is also 1, so the total magic power is 11.

 I can shoot 10 fireballs with all my magic power.

 do you want to try this?

 After a while, a goblin comes and I cast a spell.

 A fireball about 2 meters long consumed the goblin.

 I don’t feel anything strange.

 Is it because it’s been burned?

 Is it because you’re not human?

 It seems that I have the qualities of a psychopath.

“You can do it if you do it”

“That’s true, but I can only fire about nine more shots.”

 This is overkill.

 By calculation, the magical power that forms the fireball is 8,000 times the magic of the first 10 centimeters.

 So, based on simple calculations, if we use only fireballs, can we shoot 80,000 rounds of 10cm size?

 Logically, no matter how many times you shoot 10cm size balls, you won’t feel like your magical power has decreased.

“If it were me, if I put out 10 sparks, I’d run out of magic. If I put out a fireball that big, I’d be like a mummy.”

“Well, you can rely on me for magic.”

 Well, if you make it half the size, the magic power will be one-eighth.

 Even if the magic power is reduced to one tenth, it will be slightly smaller than half.

extern void fireball(int mana,int Mobile_fuel_mana);

void main(void)

{

 fireball(1,1);

}

 With this, you can shoot 55 fireballs about 90 centimeters in length.

 The cost performance is too good.

 I don’t care as long as it’s good.

 OK, let’s make it a little smaller.

extern void fireball(float mana,float Mobile_fuel_mana);

void main(void)

{

 fireball(0.5,1.0);

}

 Explain additional elements.

extern void fireball(float←mana specified when handling decimal point,float Mobile_fuel_mana);

void main(void)

{

 fireball(0.5,1.0);

}

 With 0.5 magic power, it would be a fireball of about 70 centimeters.

 This is about right.

“What are you writing on the ground?”

“I’m calculating how much magical power is just right. If the magical power is halved, it will be multiplied by the reciprocal of the cube root of 2.”

“That’s enough. My head is starting to hurt.”

“Simply put, when the magic power is halved, it becomes about 80% as large.”

“Then I can understand it somehow. It decreases by 20%. This is the truth of magic, isn’t it? You’re really smart.”

“Well, if it’s about this much, I can do it on paper.”

 I’d like to see a table of the calculations.

 Let’s buy paper and writing utensils with the money from the request.


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