Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- enum PlayerTrait1 {
- PlayerTrait1_finesse_shot = 1 << 0, // 1
- PlayerTrait1_chip_shot = 1 << 1, // 2
- PlayerTrait1_power_shot = 1 << 2, // 4
- PlayerTrait1_dead_ball = 1 << 3, // 8
- PlayerTrait1_power_header = 1 << 4, // 16
- PlayerTrait1_incisive_pass = 1 << 5, // 32
- PlayerTrait1_pinged_pass = 1 << 6, // 64
- PlayerTrait1_long_ball_pass = 1 << 7, // 128
- PlayerTrait1_tiki_taka = 1 << 8, // 256
- PlayerTrait1_whipped_pass = 1 << 9, // 512
- PlayerTrait1_jockey = 1 << 10, // 1024
- PlayerTrait1_block = 1 << 11, // 2048
- PlayerTrait1_intercept = 1 << 12, // 4096
- PlayerTrait1_anticipate = 1 << 13, // 8192
- PlayerTrait1_slide_tackle = 1 << 14, // 16384
- PlayerTrait1_bruiser = 1 << 15, // 32768
- PlayerTrait1_technical = 1 << 16, // 65536
- PlayerTrait1_rapid = 1 << 17, // 131072
- PlayerTrait1_flair = 1 << 18, // 262144
- PlayerTrait1_first_touch = 1 << 19, // 524288
- PlayerTrait1_trickster = 1 << 20, // 1048576
- PlayerTrait1_press_proven = 1 << 21, // 2097152
- PlayerTrait1_quick_step = 1 << 22, // 4194304
- PlayerTrait1_relentless = 1 << 23, // 8388608
- PlayerTrait1_trivela = 1 << 24, // 16777216
- PlayerTrait1_acrobatic = 1 << 25, // 33554432
- PlayerTrait1_long_throw = 1 << 26, // 67108864
- PlayerTrait1_aerial = 1 << 27, // 134217728
- PlayerTrait1_gk_far_throw = 1 << 28, // 268435456
- PlayerTrait1_gk_footwork = 1 << 29 // 536870912
- };
- enum PlayerTrait2 {
- PlayerTrait2_gk_cross_claimer = 1 << 0, // 1
- PlayerTrait2_gk_rush_out = 1 << 1, // 2
- PlayerTrait2_gk_far_reach = 1 << 2, // 4
- PlayerTrait2_gk_quick_reflexes = 1 << 3, // 8
- // Possible hidden traits provided by tokke001
- PlayerTrait2_cpuai_long_shot_taker = 1 << 4, //16
- PlayerTrait2_cpuai_early_crosser = 1 << 5, //32
- PlayerTrait2_career_solid_player = 1 << 6, //64
- PlayerTrait2_career_team_player = 1 << 7, //128
- PlayerTrait2_career_one_club_player = 1 << 8, //256
- PlayerTrait2_career_injury_prone = 1 << 9, //512
- PlayerTrait2_career_leadership = 1 << 10 //1024
- };
Add Comment
Please, Sign In to add comment