Author Topic: 1h Polearm Question  (Read 571 times)

0 Members and 3 Guests are viewing this topic.

Offline Mallets

  • Earl
  • ******
  • Renown: 394
  • Infamy: 22
  • cRPG Player
    • View Profile
  • Game nicks: Mallets and his family
1h Polearm Question
« on: March 19, 2012, 11:38:16 pm »
0
Is there any general rule for which polearms can be used with a shield?  Or even better, a list of polearms which can be used 1-handed and/or with a shield?

Offline RibaldRon

  • Baron
  • ****
  • Renown: 144
  • Infamy: 13
  • cRPG Player
  • why do butts
    • View Profile
  • Faction: LLJK
  • Game nicks: LLJK_RibaldRon
Re: 1h Polearm Question
« Reply #1 on: March 20, 2012, 06:29:19 am »
0
Polearms which cannot be used with a shield are marked as "Polearm(No Shield)" in-game any of the others are fair game.  Unfortunately they are not noted as such on the site.

In general just about all spears/lances can be used 1/2H.  Exceptions are, IIRC, all Pikes, and the Long Spear.  Everything else that is 1/2H is the exception, i.e. staves, I think some Scythes.

Generally speaking though many of the polearms are not in fact very good while used 1H, and if you are going to use one, make sure it is primarily a thrust/pierce such as a spear. *E: since you can only deliver a weakened thrust while using it 1H, you lose side-swings and overhead.
« Last Edit: March 20, 2012, 06:30:59 am by RibaldRon »
signature removed: annoying
visitors can't see pics , please register or login

USA USA USA

Offline Vibe

  • Vibrator
  • King
  • **********
  • Renown: 2528
  • Infamy: 615
  • cRPG Player Madam White Queen A Gentleman and a Scholar
    • View Profile
Re: 1h Polearm Question
« Reply #2 on: March 20, 2012, 07:54:06 am »
0
Also take note

Mounted Shield
Code: [Select]
case "1H":
penalty_mod = 1; // Mounted + shield + 1h
break;
case "1/2H":
penalty_mod = 0.85; // Mounted + shield + 1.5h
break;
case "Polearm (1h)":
penalty_mod = 0.85*0.85; // Mounted + shield + polearm
break;

Mounted without shield
Code: [Select]
case "1H":
penalty_mod = 1; // Mounted + 1h
break;
case "1/2H":
penalty_mod = 0.85; // Mounted + 1.5h
break;
case "2H":
penalty_mod = 0.85*0.9; // Mounted + 2h
break;
case "Polearm (1h)":
penalty_mod = 0.85*0.85; // Mounted + 1h polearm
break;
case "Polearm (2h)":
penalty_mod = 0.85*0.85*0.9; // Mounted + 2h polearm
break;

On foot w/shield
Code: [Select]
case "1H":
penalty_mod = 1; // 1h + shield
break;
case "1/2H":
penalty_mod = 0.85; // 1,5h + shield
break;
case "Polearm (1h)":
penalty_mod = 0.85*0.85; // polearm + shield
break;

Without shield on foot everything is 1.

Offline Mallets

  • Earl
  • ******
  • Renown: 394
  • Infamy: 22
  • cRPG Player
    • View Profile
  • Game nicks: Mallets and his family
Re: 1h Polearm Question
« Reply #3 on: March 20, 2012, 02:15:51 pm »
0
Got ya!  Thanks for the very helpful info guys!