Slow Saturday, so I built a Character Calculator: https://gist.github.com/philgruneich/10563219
It runs on Python and it is extremely rustic by now (yes, I could create a module and let you just import the whole thing and run as a function, but it is saturday and I'm lazy on weekends)
For now, you'll have to modify the script, scroll to the bottom and you'll find something like this:
player = {
'position': 'TE',
'attributes': {
'strength': 5,
'agility': 10,
'speed': 5,
'confidence': 5,
'stamina': 5,
'awareness': 5
},
'height': heights_help['66'],
'weight': 243,
'traits': [traits_help['Soft Hands'],traits_help['Receiving Specialist'],'workhorse']
}
This is an example. Modify the values (there are instructions inside if you don't know your real height (you can pick on a script on the source code) or the key name of your traits.
The output will be something like this:
{'Receiving Grip': 63, 'Pass Blk Power': 48, 'Rec Consistency': 57, 'Balance': 80, 'Pass Blk Awr': 53, 'Rec Awareness': 63, 'Lead Blk Awr': 56, 'Heart': 53, 'Snap Reaction': 57, 'Carrying Grip': 60, 'Vertical': 87, 'Pass Blk Tech': 76, 'Block Consistency': 55, 'Power Running': 60, 'Run Blk Power': 56, 'Footwork': 80, 'Diving': 80, 'Catch in Traffic': 66, 'Elusive Running': 68, 'Return Awr': 49, 'Quickness': 81, 'Toughness': 60, 'Run Blk Awr': 57, 'Intimidation': 58, 'Conditioning': 60, 'Route Elusiveness': 71, 'Sprinting': 50, 'Route Technique': 78, 'Receiving Hands': 76, 'Run Blk Tech': 82, 'Carrying Awr': 49}
It runs on Python and it is extremely rustic by now (yes, I could create a module and let you just import the whole thing and run as a function, but it is saturday and I'm lazy on weekends)
For now, you'll have to modify the script, scroll to the bottom and you'll find something like this:
player = {
'position': 'TE',
'attributes': {
'strength': 5,
'agility': 10,
'speed': 5,
'confidence': 5,
'stamina': 5,
'awareness': 5
},
'height': heights_help['66'],
'weight': 243,
'traits': [traits_help['Soft Hands'],traits_help['Receiving Specialist'],'workhorse']
}
This is an example. Modify the values (there are instructions inside if you don't know your real height (you can pick on a script on the source code) or the key name of your traits.
The output will be something like this:
{'Receiving Grip': 63, 'Pass Blk Power': 48, 'Rec Consistency': 57, 'Balance': 80, 'Pass Blk Awr': 53, 'Rec Awareness': 63, 'Lead Blk Awr': 56, 'Heart': 53, 'Snap Reaction': 57, 'Carrying Grip': 60, 'Vertical': 87, 'Pass Blk Tech': 76, 'Block Consistency': 55, 'Power Running': 60, 'Run Blk Power': 56, 'Footwork': 80, 'Diving': 80, 'Catch in Traffic': 66, 'Elusive Running': 68, 'Return Awr': 49, 'Quickness': 81, 'Toughness': 60, 'Run Blk Awr': 57, 'Intimidation': 58, 'Conditioning': 60, 'Route Elusiveness': 71, 'Sprinting': 50, 'Route Technique': 78, 'Receiving Hands': 76, 'Run Blk Tech': 82, 'Carrying Awr': 49}






























