cRPG
cRPG => Beginner's Help and Guides => Topic started by: Mallets on March 19, 2012, 11:38:16 pm
-
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?
-
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.
-
Also take note
Mounted Shield
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
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
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.
-
Got ya! Thanks for the very helpful info guys!