Code Monkey home page Code Monkey logo

evercraft-kata's People

Contributors

bkimminich avatar guyroyse avatar jimweirich avatar walterg2 avatar

Watchers

 avatar

evercraft-kata's Issues

Character Ability Modifiers Modify Attributes

Issue by bkimminich
Wednesday Nov 04, 2015 at 13:31 GMT
Originally opened as https://github.com/bkimminich/EverCraft-Kata/issues/7


As a character I want to apply my ability modifiers improve my capabilities in combat so that I can vanquish my enemy with extreme prejudice

  • add Strength modifier to:
    • attack roll and damage dealt
    • double Strength modifier on critical hits
    • minimum damage is always 1 (even on a critical hit)
  • add Dexterity modifier to armor class
  • add Constitution modifier to hit points (always at least 1 hit point)

Characters Have Classes

Issue by bkimminich
Wednesday Nov 04, 2015 at 13:33 GMT
Originally opened as https://github.com/bkimminich/EverCraft-Kata/issues/10


As a player I want a character to have a class that customizes its capabilities so that I can play more interesting characters

Ideas

  • changes in hit points
  • changes in attack and damage
  • increased critical range or damage
  • bonuses/penalties versus other classes
  • special abilities
  • alignment limitations

Samples

As a player I want to play a Fighter so that I can kick ass and take names

  • attacks roll is increased by 1 for every level instead of every other level
  • has 10 hit points per level instead of 5

As a player I want to play a Rogue so that I can defeat my enemies with finesse

  • does triple damage on critical hits
  • ignores an opponents Dexterity modifier (if positive) to Armor Class when attacking
  • adds Dexterity modifier to attacks instead of Strength
  • cannot have Good alignment

As a player I want to play a Monk so that I can enjoy being an Asian martial-arts archetype in a Medieval European setting

  • has 6 hit point per level instead of 5
  • does 3 points of damage instead of 1 when successfully attacking
  • adds Wisdom modifier (if positive) to Armor Class in addition to Dexterity
  • attack roll is increased by 1 every 2nd and 3rd level

As a player I want to play a Paladin so that I can smite evil, write wrongs, and be a self-righteous jerk

  • has 8 hit points per level instead of 5
  • +2 to attack and damage when attacking evil characters
  • does triple damage when critting on an evil character (i.e. add the +2 bonus for a regular attack, and then triple that)
  • attacks roll is increased by 1 for every level instead of every other level
  • can only have Good alignment

Weapons

Issue by bkimminich
Wednesday Nov 04, 2015 at 13:33 GMT
Originally opened as https://github.com/bkimminich/EverCraft-Kata/issues/12


As a character I want to be able to wield a single weapon so that I can achieve victory through superior firepower

  • character can wield only one weapon

Ideas

  • basic weapons that improve damage (dagger)
  • basic weapons that improve to attacks (+1 sword)
  • magic weapons with special properties (knife of ogre slaying)
  • weapons that certain classes or races can or cannot wield

Samples

As a character I want to be able to wield a longsword so that I can look cool

  • does 5 points of damage

As a character I want to be able to wield a +2 waraxe that so that I can be cool

  • does 6 points of damage
  • +2 to attack
  • +2 to damage
  • triple damage on a critical (quadruple for a Rogue)

As an elf I want to be able to wield a elven longsword that so I can stick it to that orc with the waraxe

  • does 5 points of damage
  • +1 to attack and damage
  • +2 to attack and damage when wielded by an elf or against an orc
  • +5 to attack and damage when wielded by an elf and against orc

As a monk I want nun chucks that work with my martial arts so that I can kick ass like Chuck Norris

  • does 6 points of damage
  • when used by a non-monk there is a -4 penalty to attack

Character Can Be Damaged

Issue by bkimminich
Wednesday Nov 04, 2015 at 13:31 GMT
Originally opened as https://github.com/bkimminich/EverCraft-Kata/issues/5


As an attacker I want to be able to damage my enemies so that they will die and I will live

  • If attack is successful, other character takes 1 point of damage when hit
  • If a roll is a natural 20 then a critical hit is dealt and the damage is doubled
  • when hit points are 0 or less, the character is dead

A Character Can Level

Issue by bkimminich
Wednesday Nov 04, 2015 at 13:32 GMT
Originally opened as https://github.com/bkimminich/EverCraft-Kata/issues/9


As a character I want my experience points to increase my level and combat capabilities so that I can bring vengeance to my foes

  • Level defaults to 1
  • After 1000 experience points, the character gains a level
    • 0 xp -> 1st Level
    • 1000 xp -> 2nd Level
    • 2000 xp -> 3rd Level
    • etc.
  • For each level:
    • hit points increase by 5 plus Con modifier
    • 1 is added to attack roll for every even level achieved

Character Has Abilities Scores

Issue by bkimminich
Wednesday Nov 04, 2015 at 13:31 GMT
Originally opened as https://github.com/bkimminich/EverCraft-Kata/issues/6


As a character I want to have several abilities so that I am not identical to other characters except in name

  • Abilities are Strength, Dexterity, Constitution, Wisdom, Intelligence, Charisma
  • Abilities range from 1 to 20 and default to 10
  • Abilities have modifiers according to the following table
Score Modifier Score Modifier Score Modifier Score Modifier
1 -5 6 -2 11 0 16 +3
2 -4 7 -2 12 +1 17 +3
3 -4 8 -1 13 +1 18 +4
4 -3 9 -1 14 +2 19 +4
5 -3 10 0 15 +2 20 +5

Items

Issue by bkimminich
Wednesday Nov 04, 2015 at 13:34 GMT
Originally opened as https://github.com/bkimminich/EverCraft-Kata/issues/14


As a character I want to be able to have items that enhance my capabilities so that I can be more bad-ass

  • can carry multiple items

Ideas

  • items that improve combat with types of weapons
  • items that improve stats against enemies with a certain alignment or race
  • items that improve abilities

Samples

As a character I want to be able to wear a ring of protection so that I can be protected from attack

  • adds +2 to armor class

As a character I want to be able to wear a belt of giant strength so that I can be even stronger in combat

  • add +4 to Strength Score

As a character I want to be able to wear an amulet of the heavens so that I can strike down evil with holy power

  • +1 to attack against neutral enemies
  • +2 to attack against evil enemies
  • double above bonuses if worn by a paladin

Adding a dice

In a turn - we toss a dice for each character, if the result is 6 then the character kills another character

Characters Have Races

Issue by bkimminich
Wednesday Nov 04, 2015 at 13:33 GMT
Originally opened as https://github.com/bkimminich/EverCraft-Kata/issues/11


As a player I want to play a Human so that I can be boring and unoriginal

  • all characters default to Human

As a player I want a character to have races other than Human that customize its capabilities so that I can
play more interesting characters and wont be boring and unoriginal

Ideas

  • changes in abilities
  • increased critical range or damage
  • bonuses/penalties versus other races
  • special abilities
  • alignment limitations

Samples

As a player I want to play an Orc so that I can be crude, drunk, and stupid

  • +2 to Strength Modifier, -1 to Intelligence, Wisdom, and Charisma Modifiers
  • +2 to Armor Class due to thick hide

As a player I want to play a Dwarf so that I can drink more than the orc

  • +1 to Constitution Modifier, -1 to Charisma Modifier
  • doubles Constitution Modifier when adding to hit points per level (if positive)
  • +2 bonus to attack/damage when attacking orcs (Dwarves hate Orcs)

As a player I want to play an Elf so that I can drink wine and snub my nose at the crude dwarf and orc

  • +1 to Dexterity Modifier, -1 to Constitution Modifier
  • does adds 1 to critical range for critical hits (20 -> 19-20, 19-20 -> 18-20)
  • +2 to Armor Class when being attacked by orcs

As a player I want to play a Halfling so that I can steal from the other drunk characters

  • +1 to Dexterity Modifier, -1 to Strength Modifier
  • +2 to Armor Class when being attacked by non Halfling (they are small and hard to hit)
  • cannot have Evil alignment

Armor

Issue by bkimminich
Wednesday Nov 04, 2015 at 13:34 GMT
Originally opened as https://github.com/bkimminich/EverCraft-Kata/issues/13


As a character I want to be able to don armor and shield so that I can protect myself from attack

  • character can only don one shield and wear one suit of armor

Ideas

  • basic armor that improves armor class (plate)
  • magic armor that has special properties
  • armor and shields that are or are not usable by certain races or classes

Samples

As a character I want to the be able to wear leather armor so that I can soften attacks against me

  • +2 to Armor Class

As a fighter (or dwarf) I want to be able to wear plate armor so that I can ignore the blows of my enemies

  • +8 to Armor Class
  • can only be worn by fighters (of any race) and dwarves (of any class)

As a character I want to the be able to wear magical leather armor of damage reduction so that I can soften attacks against me

  • +2 to Armor Class
  • -2 to all damage received

As an elf I want to be able to wear elven chain mail so that I can fit in with all the other elves

  • +5 to Armor Class
  • +8 to Armor Class if worn by an elf
  • +1 to attack if worn by an elf

As a fighter I want to be able to hold a shield in my off-hand so that I can block incoming blows

  • +3 to Armor Class
  • -4 to attack
  • -2 to attack if worn by a fighter

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.