Custom card creation work
This commit is contained in:
parent
89deba6d65
commit
2081a8f0ac
492
create_valerie_theolia.py
Normal file
492
create_valerie_theolia.py
Normal file
@ -0,0 +1,492 @@
|
|||||||
|
"""
|
||||||
|
Create custom card for Valerie-Hecate Theolia
|
||||||
|
Left-handed contact-hitting catcher with 0.855 OPS target
|
||||||
|
"""
|
||||||
|
|
||||||
|
import asyncio
|
||||||
|
from custom_cards.archetype_definitions import get_archetype
|
||||||
|
from custom_cards.archetype_calculator import BatterRatingCalculator, calculate_total_ops
|
||||||
|
from creation_helpers import mlbteam_and_franchise
|
||||||
|
from db_calls import db_get, db_post, db_put, db_patch
|
||||||
|
from datetime import datetime
|
||||||
|
import boto3
|
||||||
|
|
||||||
|
# AWS Configuration
|
||||||
|
AWS_BUCKET_NAME = 'paper-dynasty'
|
||||||
|
AWS_REGION = 'us-east-1'
|
||||||
|
S3_BASE_URL = f'https://{AWS_BUCKET_NAME}.s3.{AWS_REGION}.amazonaws.com'
|
||||||
|
|
||||||
|
|
||||||
|
async def create_valerie_theolia():
|
||||||
|
"""Create Valerie-Hecate Theolia custom card."""
|
||||||
|
|
||||||
|
print("="*70)
|
||||||
|
print("CREATING VALERIE-HECATE THEOLIA")
|
||||||
|
print("="*70)
|
||||||
|
|
||||||
|
# Player details
|
||||||
|
name_first = "Valerie-Hecate"
|
||||||
|
name_last = "Theolia"
|
||||||
|
hand = "L" # Left-handed batter
|
||||||
|
team_abbrev = "NYY" # New York Yankees (placeholder - user can specify)
|
||||||
|
positions = ["C"] # Catcher
|
||||||
|
|
||||||
|
# Get team info
|
||||||
|
mlb_team_id, franchise_id = mlbteam_and_franchise(team_abbrev)
|
||||||
|
|
||||||
|
# Cardset setup - Always use cardset 29 for custom characters
|
||||||
|
cardset_id = 29
|
||||||
|
cardset = {'id': cardset_id, 'name': 'Custom Characters'}
|
||||||
|
season = 2005
|
||||||
|
player_description = "05 Custom"
|
||||||
|
print(f"✓ Using cardset ID: {cardset['id']} - Player description: '{player_description}'")
|
||||||
|
|
||||||
|
# Start with Contact Hitter archetype and boost to 0.855 OPS
|
||||||
|
archetype = get_archetype('batter', 'contact_hitter')
|
||||||
|
print(f"\n✓ Using archetype: {archetype.name}")
|
||||||
|
print(f" Base stats: {archetype.avg_vs_r:.3f}/{archetype.obp_vs_r:.3f}/{archetype.slg_vs_r:.3f}")
|
||||||
|
|
||||||
|
# Boost stats to reach 0.855 OPS target
|
||||||
|
# Need to increase from 0.787 to 0.855 (+0.068)
|
||||||
|
# Increase AVG, OBP, and SLG for both splits
|
||||||
|
print(f"\n✓ Boosting stats to reach 0.855 OPS target...")
|
||||||
|
|
||||||
|
# Adjust archetype stats to reach 0.855 target (accounting for BP * 0.5 in AVG, full in SLG)
|
||||||
|
# Tuning with corrected SLG formula - need to reduce SLG more
|
||||||
|
archetype.avg_vs_r = 0.289
|
||||||
|
archetype.obp_vs_r = 0.350
|
||||||
|
archetype.slg_vs_r = 0.435
|
||||||
|
|
||||||
|
archetype.avg_vs_l = 0.279
|
||||||
|
archetype.obp_vs_l = 0.340
|
||||||
|
archetype.slg_vs_l = 0.420
|
||||||
|
|
||||||
|
print(f" Adjusted vR: {archetype.avg_vs_r:.3f}/{archetype.obp_vs_r:.3f}/{archetype.slg_vs_r:.3f} (OPS: {archetype.obp_vs_r + archetype.slg_vs_r:.3f})")
|
||||||
|
print(f" Adjusted vL: {archetype.avg_vs_l:.3f}/{archetype.obp_vs_l:.3f}/{archetype.slg_vs_l:.3f} (OPS: {archetype.obp_vs_l + archetype.slg_vs_l:.3f})")
|
||||||
|
|
||||||
|
# Calculate adjusted ratings
|
||||||
|
calc = BatterRatingCalculator(archetype)
|
||||||
|
ratings = calc.calculate_ratings(battingcard_id=0) # Temp ID
|
||||||
|
baserunning = calc.calculate_baserunning()
|
||||||
|
|
||||||
|
# Override steal rate to 0.05555555
|
||||||
|
print(f"\n✓ Setting steal rate to 0.05555555...")
|
||||||
|
# Very low steal rate
|
||||||
|
baserunning['steal_jump'] = 0.05555555
|
||||||
|
# With 5.555% success rate, approximate values:
|
||||||
|
baserunning['steal_high'] = 11
|
||||||
|
baserunning['steal_low'] = 7
|
||||||
|
|
||||||
|
# Manual adjustments for power distribution
|
||||||
|
print(f"\n✓ Applying power distribution adjustments...")
|
||||||
|
print(f" Setting HR to 0.0 for both sides")
|
||||||
|
print(f" Setting BP-HR to 0.0 vL, 1.0 vR")
|
||||||
|
|
||||||
|
# vL (ratings[0])
|
||||||
|
old_hr_vl = ratings[0]['homerun']
|
||||||
|
old_bphr_vl = ratings[0]['bp_homerun']
|
||||||
|
ratings[0]['homerun'] = 0.0
|
||||||
|
ratings[0]['bp_homerun'] = 0.0
|
||||||
|
# Redistribute to singles (not doubles) to reduce SLG
|
||||||
|
redistrib_vl = old_hr_vl + old_bphr_vl
|
||||||
|
ratings[0]['single_center'] += redistrib_vl
|
||||||
|
|
||||||
|
# vR (ratings[1])
|
||||||
|
old_hr_vr = ratings[1]['homerun']
|
||||||
|
old_bphr_vr = ratings[1]['bp_homerun']
|
||||||
|
ratings[1]['homerun'] = 0.0
|
||||||
|
ratings[1]['bp_homerun'] = 1.0
|
||||||
|
# Redistribute excess to singles (not doubles) to maintain total chances and reduce SLG
|
||||||
|
redistrib_vr = old_hr_vr + (old_bphr_vr - 1.0)
|
||||||
|
ratings[1]['single_center'] += redistrib_vr
|
||||||
|
|
||||||
|
# Apply randomization to make results look more natural
|
||||||
|
# Randomize all non-HR and non-BP-single results by ±0.5
|
||||||
|
import random
|
||||||
|
|
||||||
|
print(f"\n✓ Applying randomization (±0.5) and rounding to 0.05...")
|
||||||
|
|
||||||
|
for rating in ratings:
|
||||||
|
# Fields to randomize (exclude homerun, bp_homerun for vR if it's exactly 1.0, and bp_single)
|
||||||
|
randomize_fields = [
|
||||||
|
'triple', 'double_three', 'double_two', 'double_pull',
|
||||||
|
'single_two', 'single_one', 'single_center',
|
||||||
|
'walk', 'hbp', 'strikeout', 'lineout', 'popout',
|
||||||
|
'flyout_a', 'flyout_bq', 'flyout_lf_b', 'flyout_rf_b',
|
||||||
|
'groundout_a', 'groundout_b', 'groundout_c'
|
||||||
|
]
|
||||||
|
|
||||||
|
# Only randomize bp_homerun if it's not exactly 1.0 (our target value)
|
||||||
|
if rating['bp_homerun'] != 1.0:
|
||||||
|
randomize_fields.insert(0, 'bp_homerun')
|
||||||
|
|
||||||
|
for field in randomize_fields:
|
||||||
|
if rating[field] > 0: # Only randomize non-zero values
|
||||||
|
randomization = random.uniform(-0.5, 0.5)
|
||||||
|
new_value = rating[field] + randomization
|
||||||
|
# Round to nearest 0.05
|
||||||
|
rating[field] = round(new_value * 20) / 20
|
||||||
|
# Ensure non-negative
|
||||||
|
rating[field] = max(0.05, rating[field])
|
||||||
|
|
||||||
|
# Remove all triples
|
||||||
|
print(f"\n✓ Removing all triples...")
|
||||||
|
for rating in ratings:
|
||||||
|
triple_value = rating['triple']
|
||||||
|
rating['triple'] = 0.0
|
||||||
|
# Redistribute to doubles (maintain gap power)
|
||||||
|
rating['double_two'] += triple_value
|
||||||
|
rating['double_two'] = round(rating['double_two'] * 20) / 20
|
||||||
|
|
||||||
|
print(f" Triples removed and redistributed to doubles")
|
||||||
|
|
||||||
|
# Adjust groundball distribution
|
||||||
|
print(f"\n✓ Adjusting groundball distribution...")
|
||||||
|
|
||||||
|
# vL (ratings[0]): Distribute half of gbC to gbA and gbB
|
||||||
|
vl_gbc_half = ratings[0]['groundout_c'] / 2
|
||||||
|
vl_redistrib = vl_gbc_half / 2
|
||||||
|
ratings[0]['groundout_a'] += vl_redistrib
|
||||||
|
ratings[0]['groundout_b'] += vl_redistrib
|
||||||
|
ratings[0]['groundout_c'] -= vl_gbc_half
|
||||||
|
|
||||||
|
# vR (ratings[1]): Transfer 1.0 from gbC to both gbA and gbB
|
||||||
|
ratings[1]['groundout_a'] += 1.0
|
||||||
|
ratings[1]['groundout_b'] += 1.0
|
||||||
|
ratings[1]['groundout_c'] -= 2.0
|
||||||
|
|
||||||
|
# Round to 0.05
|
||||||
|
for rating in ratings:
|
||||||
|
rating['groundout_a'] = round(rating['groundout_a'] * 20) / 20
|
||||||
|
rating['groundout_b'] = round(rating['groundout_b'] * 20) / 20
|
||||||
|
rating['groundout_c'] = round(rating['groundout_c'] * 20) / 20
|
||||||
|
|
||||||
|
print(f" vL: gbA={ratings[0]['groundout_a']:.2f}, gbB={ratings[0]['groundout_b']:.2f}, gbC={ratings[0]['groundout_c']:.2f}")
|
||||||
|
print(f" vR: gbA={ratings[1]['groundout_a']:.2f}, gbB={ratings[1]['groundout_b']:.2f}, gbC={ratings[1]['groundout_c']:.2f}")
|
||||||
|
|
||||||
|
# Fix total chances to exactly 108.0
|
||||||
|
for rating in ratings:
|
||||||
|
total = sum([
|
||||||
|
rating['homerun'], rating['bp_homerun'], rating['triple'],
|
||||||
|
rating['double_three'], rating['double_two'], rating['double_pull'],
|
||||||
|
rating['single_two'], rating['single_one'], rating['single_center'], rating['bp_single'],
|
||||||
|
rating['walk'], rating['hbp'], rating['strikeout'], rating['lineout'], rating['popout'],
|
||||||
|
rating['flyout_a'], rating['flyout_bq'], rating['flyout_lf_b'], rating['flyout_rf_b'],
|
||||||
|
rating['groundout_a'], rating['groundout_b'], rating['groundout_c']
|
||||||
|
])
|
||||||
|
diff = 108.0 - total
|
||||||
|
if abs(diff) > 0.01:
|
||||||
|
# Add/subtract the difference to groundout_b (most common out type)
|
||||||
|
rating['groundout_b'] += diff
|
||||||
|
rating['groundout_b'] = round(rating['groundout_b'] * 20) / 20
|
||||||
|
|
||||||
|
# Recalculate rate stats (BP results multiply by 0.5 for AVG/OBP only)
|
||||||
|
for rating in ratings:
|
||||||
|
total_hits = (
|
||||||
|
rating['homerun'] + rating['bp_homerun'] * 0.5 + rating['triple'] +
|
||||||
|
rating['double_three'] + rating['double_two'] + rating['double_pull'] +
|
||||||
|
rating['single_two'] + rating['single_one'] + rating['single_center'] + rating['bp_single'] * 0.5
|
||||||
|
)
|
||||||
|
rating['avg'] = round(total_hits / 108, 5)
|
||||||
|
rating['obp'] = round((total_hits + rating['hbp'] + rating['walk']) / 108, 5)
|
||||||
|
# SLG: BP-HR gets 2 bases (not 0.5*2), BP-1B gets 1 base (not 0.5*1)
|
||||||
|
rating['slg'] = round((
|
||||||
|
rating['homerun'] * 4 + rating['bp_homerun'] * 2 +
|
||||||
|
rating['triple'] * 3 +
|
||||||
|
(rating['double_two'] + rating['double_three'] + rating['double_pull']) * 2 +
|
||||||
|
rating['single_center'] + rating['single_two'] + rating['single_one'] + rating['bp_single']
|
||||||
|
) / 108, 5)
|
||||||
|
|
||||||
|
# Display adjusted ratings
|
||||||
|
print("\n" + "="*70)
|
||||||
|
print("FINAL RATINGS (TWO-COLUMN TABLE)")
|
||||||
|
print("="*70)
|
||||||
|
|
||||||
|
# Two-column table display
|
||||||
|
vl = ratings[0]
|
||||||
|
vr = ratings[1]
|
||||||
|
|
||||||
|
print(f"\n{'RATING':<25} {'VS LHP':>12} {'VS RHP':>12}")
|
||||||
|
print("-" * 50)
|
||||||
|
print(f"{'AVG':<25} {vl['avg']:>12.3f} {vr['avg']:>12.3f}")
|
||||||
|
print(f"{'OBP':<25} {vl['obp']:>12.3f} {vr['obp']:>12.3f}")
|
||||||
|
print(f"{'SLG':<25} {vl['slg']:>12.3f} {vr['slg']:>12.3f}")
|
||||||
|
print(f"{'OPS':<25} {vl['obp']+vl['slg']:>12.3f} {vr['obp']+vr['slg']:>12.3f}")
|
||||||
|
print()
|
||||||
|
print(f"{'HITS':<25}")
|
||||||
|
print(f"{' Homerun':<25} {vl['homerun']:>12.1f} {vr['homerun']:>12.1f}")
|
||||||
|
print(f"{' BP Homerun':<25} {vl['bp_homerun']:>12.1f} {vr['bp_homerun']:>12.1f}")
|
||||||
|
print(f"{' Triple':<25} {vl['triple']:>12.1f} {vr['triple']:>12.1f}")
|
||||||
|
print(f"{' Double (3B)':<25} {vl['double_three']:>12.1f} {vr['double_three']:>12.1f}")
|
||||||
|
print(f"{' Double (2B)':<25} {vl['double_two']:>12.1f} {vr['double_two']:>12.1f}")
|
||||||
|
print(f"{' Double (Pull)':<25} {vl['double_pull']:>12.1f} {vr['double_pull']:>12.1f}")
|
||||||
|
print(f"{' Single (2B)':<25} {vl['single_two']:>12.1f} {vr['single_two']:>12.1f}")
|
||||||
|
print(f"{' Single (1B)':<25} {vl['single_one']:>12.1f} {vr['single_one']:>12.1f}")
|
||||||
|
print(f"{' Single (Center)':<25} {vl['single_center']:>12.1f} {vr['single_center']:>12.1f}")
|
||||||
|
print(f"{' BP Single':<25} {vl['bp_single']:>12.1f} {vr['bp_single']:>12.1f}")
|
||||||
|
print()
|
||||||
|
print(f"{'ON-BASE':<25}")
|
||||||
|
print(f"{' Walk':<25} {vl['walk']:>12.1f} {vr['walk']:>12.1f}")
|
||||||
|
print(f"{' HBP':<25} {vl['hbp']:>12.1f} {vr['hbp']:>12.1f}")
|
||||||
|
print()
|
||||||
|
print(f"{'OUTS':<25}")
|
||||||
|
print(f"{' Strikeout':<25} {vl['strikeout']:>12.1f} {vr['strikeout']:>12.1f}")
|
||||||
|
print(f"{' Lineout':<25} {vl['lineout']:>12.1f} {vr['lineout']:>12.1f}")
|
||||||
|
print(f"{' Popout':<25} {vl['popout']:>12.1f} {vr['popout']:>12.1f}")
|
||||||
|
print(f"{' Flyout A':<25} {vl['flyout_a']:>12.1f} {vr['flyout_a']:>12.1f}")
|
||||||
|
print(f"{' Flyout BQ':<25} {vl['flyout_bq']:>12.1f} {vr['flyout_bq']:>12.1f}")
|
||||||
|
print(f"{' Flyout LF B':<25} {vl['flyout_lf_b']:>12.1f} {vr['flyout_lf_b']:>12.1f}")
|
||||||
|
print(f"{' Flyout RF B':<25} {vl['flyout_rf_b']:>12.1f} {vr['flyout_rf_b']:>12.1f}")
|
||||||
|
print(f"{' Groundout A':<25} {vl['groundout_a']:>12.1f} {vr['groundout_a']:>12.1f}")
|
||||||
|
print(f"{' Groundout B':<25} {vl['groundout_b']:>12.1f} {vr['groundout_b']:>12.1f}")
|
||||||
|
print(f"{' Groundout C':<25} {vl['groundout_c']:>12.1f} {vr['groundout_c']:>12.1f}")
|
||||||
|
print()
|
||||||
|
print(f"{'SPRAY CHART':<25}")
|
||||||
|
print(f"{' Pull %':<25} {vl['pull_rate']:>11.1%} {vr['pull_rate']:>11.1%}")
|
||||||
|
print(f"{' Center %':<25} {vl['center_rate']:>11.1%} {vr['center_rate']:>11.1%}")
|
||||||
|
print(f"{' Opposite %':<25} {vl['slap_rate']:>11.1%} {vr['slap_rate']:>11.1%}")
|
||||||
|
print()
|
||||||
|
|
||||||
|
# Calculate totals
|
||||||
|
total_vl = sum([
|
||||||
|
vl['homerun'], vl['bp_homerun'], vl['triple'],
|
||||||
|
vl['double_three'], vl['double_two'], vl['double_pull'],
|
||||||
|
vl['single_two'], vl['single_one'], vl['single_center'], vl['bp_single'],
|
||||||
|
vl['walk'], vl['hbp'], vl['strikeout'], vl['lineout'], vl['popout'],
|
||||||
|
vl['flyout_a'], vl['flyout_bq'], vl['flyout_lf_b'], vl['flyout_rf_b'],
|
||||||
|
vl['groundout_a'], vl['groundout_b'], vl['groundout_c']
|
||||||
|
])
|
||||||
|
total_vr = sum([
|
||||||
|
vr['homerun'], vr['bp_homerun'], vr['triple'],
|
||||||
|
vr['double_three'], vr['double_two'], vr['double_pull'],
|
||||||
|
vr['single_two'], vr['single_one'], vr['single_center'], vr['bp_single'],
|
||||||
|
vr['walk'], vr['hbp'], vr['strikeout'], vr['lineout'], vr['popout'],
|
||||||
|
vr['flyout_a'], vr['flyout_bq'], vr['flyout_lf_b'], vr['flyout_rf_b'],
|
||||||
|
vr['groundout_a'], vr['groundout_b'], vr['groundout_c']
|
||||||
|
])
|
||||||
|
print(f"{'TOTAL CHANCES':<25} {total_vl:>12.1f} {total_vr:>12.1f}")
|
||||||
|
print("-" * 50)
|
||||||
|
|
||||||
|
# Calculate and display total OPS
|
||||||
|
total_ops = calculate_total_ops(ratings[0], ratings[1], is_pitcher=False)
|
||||||
|
print(f"\nTotal OPS: {total_ops:.3f} (Target: 0.855)")
|
||||||
|
|
||||||
|
print(f"\nBaserunning:")
|
||||||
|
print(f" Steal: {baserunning['steal_low']}-{baserunning['steal_high']} (Auto: {baserunning['steal_auto']}, Jump: {baserunning['steal_jump']})")
|
||||||
|
print(f" Running: {baserunning['running']} Hit-and-Run: {baserunning['hit_and_run']}")
|
||||||
|
|
||||||
|
# Summary
|
||||||
|
print("\n" + "="*70)
|
||||||
|
print("SUMMARY")
|
||||||
|
print("="*70)
|
||||||
|
print(f"\nPlayer: Valerie-Hecate Theolia (L)")
|
||||||
|
print(f"Position: C (Catcher)")
|
||||||
|
print(f"Cardset: 29 (Custom Characters)")
|
||||||
|
print(f"Description: 05 Custom")
|
||||||
|
print(f"Total OPS: {total_ops:.3f} / 0.855 target")
|
||||||
|
print(f"\nGB Distribution Check:")
|
||||||
|
print(f" vL: gbA={ratings[0]['groundout_a']:.1f} < gbB={ratings[0]['groundout_b']:.1f} ✓")
|
||||||
|
print(f" vR: gbA={ratings[1]['groundout_a']:.1f} < gbB={ratings[1]['groundout_b']:.1f} ✓")
|
||||||
|
|
||||||
|
print("\n" + "="*70)
|
||||||
|
print("DATABASE CREATION")
|
||||||
|
print("="*70)
|
||||||
|
|
||||||
|
# Set bunting to A
|
||||||
|
baserunning['bunting'] = 'A'
|
||||||
|
print(f"\n✓ Bunting set to: A")
|
||||||
|
|
||||||
|
# Create database records
|
||||||
|
bbref_id = f"custom_{name_last.lower()}{name_first[0].lower()}01"
|
||||||
|
|
||||||
|
# Step 1: Create/verify MLBPlayer record
|
||||||
|
print(f"\n✓ Checking for existing MLBPlayer record...")
|
||||||
|
# Try searching by first_name and last_name
|
||||||
|
mlb_query = await db_get('mlbplayers', params=[('first_name', name_first), ('last_name', name_last)])
|
||||||
|
if mlb_query and mlb_query.get('count', 0) > 0:
|
||||||
|
mlbplayer_id = mlb_query['players'][0]['id']
|
||||||
|
print(f" Using existing MLBPlayer ID: {mlbplayer_id}")
|
||||||
|
else:
|
||||||
|
try:
|
||||||
|
mlbplayer_payload = {
|
||||||
|
'key_bbref': bbref_id,
|
||||||
|
'key_fangraphs': 0,
|
||||||
|
'key_mlbam': 0,
|
||||||
|
'key_retro': '',
|
||||||
|
'first_name': name_first,
|
||||||
|
'last_name': name_last,
|
||||||
|
}
|
||||||
|
new_mlbplayer = await db_post('mlbplayers/one', payload=mlbplayer_payload)
|
||||||
|
mlbplayer_id = new_mlbplayer['id']
|
||||||
|
print(f" Created MLBPlayer ID: {mlbplayer_id}")
|
||||||
|
except ValueError as e:
|
||||||
|
# Player exists but couldn't be found - skip MLBPlayer creation
|
||||||
|
print(f" MLBPlayer creation failed: {e}")
|
||||||
|
print(f" Proceeding without MLBPlayer linkage...")
|
||||||
|
mlbplayer_id = None
|
||||||
|
|
||||||
|
# Step 2: Create or update Player record
|
||||||
|
print(f"\n✓ Checking for existing Player record...")
|
||||||
|
now = datetime.now()
|
||||||
|
release_date = f"{now.year}-{now.month}-{now.day}"
|
||||||
|
|
||||||
|
# Check if player already exists
|
||||||
|
p_query = await db_get('players', params=[('bbref_id', bbref_id), ('cardset_id', cardset['id'])])
|
||||||
|
if p_query and p_query.get('count', 0) > 0:
|
||||||
|
player_id = p_query['players'][0]['player_id']
|
||||||
|
print(f" Using existing Player ID: {player_id}")
|
||||||
|
# Update the image URL
|
||||||
|
image_url = f"https://pd.manticorum.com/api/v2/players/{player_id}/battingcard?d={release_date}"
|
||||||
|
await db_patch('players', object_id=player_id, params=[('image', image_url)])
|
||||||
|
print(f" Updated image URL")
|
||||||
|
else:
|
||||||
|
# Create new player
|
||||||
|
print(f" Creating new Player record...")
|
||||||
|
# Temporary placeholder image URL (will update after getting player_id)
|
||||||
|
temp_image_url = f"https://pd.manticorum.com/api/v2/players/0/battingcard?d={release_date}"
|
||||||
|
|
||||||
|
player_payload = {
|
||||||
|
'p_name': f"{name_first} {name_last}",
|
||||||
|
'bbref_id': bbref_id,
|
||||||
|
'fangr_id': 0,
|
||||||
|
'strat_code': 0,
|
||||||
|
'hand': hand,
|
||||||
|
'mlbclub': 'Custom Ballplayers',
|
||||||
|
'franchise': 'Custom Ballplayers',
|
||||||
|
'cardset_id': cardset['id'],
|
||||||
|
'description': player_description,
|
||||||
|
'is_custom': True,
|
||||||
|
'cost': 100, # Placeholder
|
||||||
|
'rarity_id': 5, # Common placeholder
|
||||||
|
'image': temp_image_url,
|
||||||
|
'set_num': 9999, # Custom player set number
|
||||||
|
'pos_1': 'C', # Primary position
|
||||||
|
}
|
||||||
|
|
||||||
|
# Only add mlbplayer_id if we have one
|
||||||
|
if mlbplayer_id:
|
||||||
|
player_payload['mlbplayer_id'] = mlbplayer_id
|
||||||
|
|
||||||
|
new_player = await db_post('players', payload=player_payload)
|
||||||
|
player_id = new_player['player_id']
|
||||||
|
print(f" Created Player ID: {player_id}")
|
||||||
|
|
||||||
|
# Update with correct image URL
|
||||||
|
image_url = f"https://pd.manticorum.com/api/v2/players/{player_id}/battingcard?d={release_date}"
|
||||||
|
await db_patch('players', object_id=player_id, params=[('image', image_url)])
|
||||||
|
print(f" Updated with correct image URL")
|
||||||
|
|
||||||
|
# Step 3: Create BattingCard
|
||||||
|
print(f"\n✓ Creating BattingCard...")
|
||||||
|
batting_card_payload = {
|
||||||
|
'cards': [{
|
||||||
|
'player_id': player_id,
|
||||||
|
'key_bbref': bbref_id,
|
||||||
|
'key_fangraphs': 0,
|
||||||
|
'key_mlbam': 0,
|
||||||
|
'key_retro': '',
|
||||||
|
'name_first': name_first,
|
||||||
|
'name_last': name_last,
|
||||||
|
'steal_low': baserunning['steal_low'],
|
||||||
|
'steal_high': baserunning['steal_high'],
|
||||||
|
'steal_auto': baserunning['steal_auto'],
|
||||||
|
'steal_jump': baserunning['steal_jump'],
|
||||||
|
'hit_and_run': baserunning['hit_and_run'],
|
||||||
|
'running': baserunning['running'],
|
||||||
|
'hand': hand,
|
||||||
|
'bunting': 'A',
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
|
||||||
|
await db_put('battingcards', payload=batting_card_payload, timeout=10)
|
||||||
|
print(f" BattingCard created")
|
||||||
|
|
||||||
|
# Get the created card ID
|
||||||
|
bc_query = await db_get('battingcards', params=[('player_id', player_id)])
|
||||||
|
battingcard_id = bc_query['cards'][0]['id']
|
||||||
|
print(f" BattingCard ID: {battingcard_id}")
|
||||||
|
|
||||||
|
# Step 4: Create BattingCardRatings
|
||||||
|
print(f"\n✓ Creating BattingCardRatings...")
|
||||||
|
for rating in ratings:
|
||||||
|
rating['battingcard_id'] = battingcard_id
|
||||||
|
|
||||||
|
ratings_payload = {'ratings': ratings}
|
||||||
|
await db_put('battingcardratings', payload=ratings_payload, timeout=10)
|
||||||
|
print(f" Ratings created (vL and vR)")
|
||||||
|
|
||||||
|
# Step 5: Create CardPositions with defensive ratings
|
||||||
|
print(f"\n✓ Creating CardPosition (Catcher)...")
|
||||||
|
positions_payload = {
|
||||||
|
'positions': [{
|
||||||
|
'player_id': player_id,
|
||||||
|
'variant': 0,
|
||||||
|
'position': 'C',
|
||||||
|
'innings': 1,
|
||||||
|
'range': 3, # Range 3
|
||||||
|
'error': 5, # Error 5
|
||||||
|
'arm': 0, # Arm 0
|
||||||
|
'pb': 6, # PB 6
|
||||||
|
'overthrow': 3, # Overthrow 3
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
|
||||||
|
await db_put('cardpositions', payload=positions_payload, timeout=10)
|
||||||
|
print(f" Position created: C (Range 3, Error 5, PB 6, Overthrow 3, Arm 0)")
|
||||||
|
|
||||||
|
# Step 6: Update rarity and cost
|
||||||
|
print(f"\n✓ Updating rarity to Starter and cost to 91...")
|
||||||
|
await db_patch('players', object_id=player_id, params=[('rarity_id', 3)]) # Starter = 3
|
||||||
|
await db_patch('players', object_id=player_id, params=[('cost', 91)])
|
||||||
|
print(f" Rarity set to: Starter (ID 3)")
|
||||||
|
print(f" Cost set to: 91")
|
||||||
|
|
||||||
|
# Step 7: Generate card image and upload to S3
|
||||||
|
print(f"\n✓ Generating and uploading card image to AWS S3...")
|
||||||
|
|
||||||
|
# Fetch the card image from API
|
||||||
|
import aiohttp
|
||||||
|
api_image_url = f"https://pd.manticorum.com/api/v2/players/{player_id}/battingcard?d={release_date}"
|
||||||
|
|
||||||
|
async with aiohttp.ClientSession() as session:
|
||||||
|
async with session.get(api_image_url) as response:
|
||||||
|
if response.status == 200:
|
||||||
|
image_bytes = await response.read()
|
||||||
|
print(f" Fetched card image ({len(image_bytes)} bytes)")
|
||||||
|
else:
|
||||||
|
raise ValueError(f"Failed to fetch card image: {response.status}")
|
||||||
|
|
||||||
|
# Upload to S3
|
||||||
|
s3_client = boto3.client('s3', region_name=AWS_REGION)
|
||||||
|
s3_key = f"cards/cardset-{cardset['id']:03d}/player-{player_id}/battingcard.png"
|
||||||
|
|
||||||
|
s3_client.put_object(
|
||||||
|
Bucket=AWS_BUCKET_NAME,
|
||||||
|
Key=s3_key,
|
||||||
|
Body=image_bytes,
|
||||||
|
ContentType='image/png',
|
||||||
|
CacheControl='public, max-age=300'
|
||||||
|
)
|
||||||
|
print(f" Uploaded to S3: {s3_key}")
|
||||||
|
|
||||||
|
# Update player with S3 URL
|
||||||
|
s3_url = f"https://{AWS_BUCKET_NAME}.s3.{AWS_REGION}.amazonaws.com/{s3_key}?d={release_date}"
|
||||||
|
await db_patch('players', object_id=player_id, params=[('image', s3_url)])
|
||||||
|
print(f" Updated player image URL to S3")
|
||||||
|
|
||||||
|
print("\n" + "="*70)
|
||||||
|
print("✅ SUCCESS!")
|
||||||
|
print("="*70)
|
||||||
|
print(f"\nValerie-Hecate Theolia created successfully!")
|
||||||
|
print(f" Player ID: {player_id}")
|
||||||
|
print(f" BattingCard ID: {battingcard_id}")
|
||||||
|
print(f" Position: C")
|
||||||
|
print(f" Bunting: A")
|
||||||
|
print(f" Rarity: Starter")
|
||||||
|
print(f" Cost: 91")
|
||||||
|
print(f" Total OPS: {total_ops:.3f}")
|
||||||
|
print(f" S3 Image URL: {s3_url}")
|
||||||
|
print("\n" + "="*70)
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
asyncio.run(create_valerie_theolia())
|
||||||
283
custom_cards/README.md
Normal file
283
custom_cards/README.md
Normal file
@ -0,0 +1,283 @@
|
|||||||
|
# Custom Card Creation System
|
||||||
|
|
||||||
|
Create fictional player cards for Paper Dynasty using baseball archetypes - no real statistics required!
|
||||||
|
|
||||||
|
## Quick Start
|
||||||
|
|
||||||
|
```bash
|
||||||
|
cd /mnt/NV2/Development/paper-dynasty/card-creation
|
||||||
|
source venv/bin/activate
|
||||||
|
python -m custom_cards.interactive_creator
|
||||||
|
```
|
||||||
|
|
||||||
|
Or via Claude Code:
|
||||||
|
```
|
||||||
|
"Create custom cards"
|
||||||
|
"I want to make fictional player cards"
|
||||||
|
```
|
||||||
|
|
||||||
|
## What This Does
|
||||||
|
|
||||||
|
This system automates the tedious manual process of creating custom fictional players by:
|
||||||
|
|
||||||
|
1. **Archetype Selection**: Choose from 16 predefined player types
|
||||||
|
- 8 Batter archetypes (Power Slugger, Speedster, Contact Hitter, etc.)
|
||||||
|
- 8 Pitcher archetypes (Ace, Closer, Groundball Specialist, etc.)
|
||||||
|
|
||||||
|
2. **Automatic Calculation**: Converts traditional baseball stats into D20 game mechanics
|
||||||
|
- Takes archetype's AVG/OBP/SLG and calculates all 108 chances
|
||||||
|
- Distributes hits, walks, strikeouts, outs across D20 probabilities
|
||||||
|
- Generates baserunning ratings from speed metrics
|
||||||
|
- Applies the Paper Dynasty OPS formula for rarity/cost
|
||||||
|
|
||||||
|
3. **Review & Iterate**: Preview calculated ratings before committing
|
||||||
|
- See full stat breakdown (vs L, vs R)
|
||||||
|
- Total OPS calculation
|
||||||
|
- Option to tweak and refine
|
||||||
|
|
||||||
|
4. **Database Creation**: Automatically creates all required records
|
||||||
|
- Player record
|
||||||
|
- Batting/Pitching card
|
||||||
|
- Card ratings (vs L and vs R)
|
||||||
|
- Position assignments
|
||||||
|
|
||||||
|
## Architecture
|
||||||
|
|
||||||
|
### Files
|
||||||
|
|
||||||
|
- **`archetype_definitions.py`**: Baseball player profiles
|
||||||
|
- BatterArchetype and PitcherArchetype dataclasses
|
||||||
|
- 16 predefined archetypes with traditional stats
|
||||||
|
- Functions to list and describe archetypes
|
||||||
|
|
||||||
|
- **`archetype_calculator.py`**: Stat conversion engine
|
||||||
|
- BatterRatingCalculator: Converts batter stats to D20
|
||||||
|
- PitcherRatingCalculator: Converts pitcher stats to D20
|
||||||
|
- Handles distribution logic (hits, outs, spray charts)
|
||||||
|
- Calculates total_OPS using PD formula
|
||||||
|
|
||||||
|
- **`interactive_creator.py`**: Main workflow script
|
||||||
|
- CustomCardCreator class with interactive prompts
|
||||||
|
- Cardset setup and selection
|
||||||
|
- Player information collection
|
||||||
|
- Review and tweak loop
|
||||||
|
- Database record creation
|
||||||
|
|
||||||
|
- **`__init__.py`**: Package exports
|
||||||
|
|
||||||
|
### Key Concepts
|
||||||
|
|
||||||
|
**Archetypes** define traditional baseball statistics:
|
||||||
|
```python
|
||||||
|
BatterArchetype(
|
||||||
|
name="Power Slugger",
|
||||||
|
avg_vs_r=0.240, obp_vs_r=0.320, slg_vs_r=0.480,
|
||||||
|
bb_pct_vs_r=0.10, k_pct_vs_r=0.28,
|
||||||
|
# ... plus batted ball profile, spray chart, power, speed, defense
|
||||||
|
)
|
||||||
|
```
|
||||||
|
|
||||||
|
**Calculators** convert these to D20 mechanics:
|
||||||
|
```python
|
||||||
|
calc = BatterRatingCalculator(archetype)
|
||||||
|
ratings = calc.calculate_ratings(battingcard_id=123)
|
||||||
|
# Returns list of dicts with all 108 chances distributed:
|
||||||
|
# homerun, triple, double_pull, single_center, walk, strikeout, etc.
|
||||||
|
```
|
||||||
|
|
||||||
|
**Total OPS Formula** determines rarity and cost:
|
||||||
|
- Batters: `(OPS_vR + OPS_vL + min(OPS_vL, OPS_vR)) / 3`
|
||||||
|
- Pitchers: `(OPS_vR + OPS_vL + max(OPS_vL, OPS_vR)) / 3`
|
||||||
|
|
||||||
|
## Available Archetypes
|
||||||
|
|
||||||
|
### Batters
|
||||||
|
|
||||||
|
1. **Power Slugger** - High HR, lower average, high K
|
||||||
|
2. **Contact Hitter** - High average, low K, gap power
|
||||||
|
3. **Speedster** - Elite speed, slap hitter, excellent defense
|
||||||
|
4. **Balanced Star** - Well-rounded five-tool player
|
||||||
|
5. **Patient Walker** - Elite plate discipline, high OBP
|
||||||
|
6. **Slap Hitter** - Opposite field, puts ball in play
|
||||||
|
7. **Three True Outcomes** - Extreme power/walks, very high K
|
||||||
|
8. **Defensive Specialist** - Elite defense, weak bat
|
||||||
|
|
||||||
|
### Pitchers
|
||||||
|
|
||||||
|
1. **Ace** - Elite starter, dominates both sides
|
||||||
|
2. **Power Pitcher** - High velocity, high K, some walks
|
||||||
|
3. **Finesse Pitcher** - Command specialist, weak contact
|
||||||
|
4. **Groundball Specialist** - Induces grounders, low HR
|
||||||
|
5. **Dominant Closer** - Elite short relief
|
||||||
|
6. **Setup Man** - Solid late-inning reliever
|
||||||
|
7. **Swingman** - Can start or relieve
|
||||||
|
8. **Lefty Specialist** - LOOGY type, dominates lefties
|
||||||
|
|
||||||
|
## Example Workflow
|
||||||
|
|
||||||
|
```
|
||||||
|
1. Choose cardset (or create new one)
|
||||||
|
→ "Custom Heroes 2025"
|
||||||
|
|
||||||
|
2. Select player type
|
||||||
|
→ Batter
|
||||||
|
|
||||||
|
3. Choose archetype
|
||||||
|
→ Power Slugger
|
||||||
|
|
||||||
|
4. Enter player details
|
||||||
|
→ Name: Zeus Thunder
|
||||||
|
→ Hand: Right
|
||||||
|
→ Team: Yankees
|
||||||
|
→ Positions: RF DH
|
||||||
|
|
||||||
|
5. Review calculated ratings
|
||||||
|
VS RHP: .240/.320/.480 (OPS: .800)
|
||||||
|
VS LHP: .250/.330/.500 (OPS: .830)
|
||||||
|
Total OPS: 0.810
|
||||||
|
HR: 5.0 | BB: 11.7 | K: 27.2
|
||||||
|
|
||||||
|
6. Accept or tweak
|
||||||
|
→ Accept
|
||||||
|
|
||||||
|
7. System creates all database records
|
||||||
|
✓ MLBPlayer, Player, BattingCard, Ratings, Positions
|
||||||
|
|
||||||
|
8. Continue or exit
|
||||||
|
→ Create another player
|
||||||
|
```
|
||||||
|
|
||||||
|
## Custom Player IDs
|
||||||
|
|
||||||
|
Custom players use synthetic identifiers:
|
||||||
|
- `bbref_id`: `custom_lastnamefirstinitial01`
|
||||||
|
- Example: "John Smith" → `custom_smithj01`
|
||||||
|
- `fangraphs_id`: 0
|
||||||
|
- `mlbam_id`: 0
|
||||||
|
- `retrosheet_id`: ""
|
||||||
|
- `is_custom`: True
|
||||||
|
|
||||||
|
## Integration with Paper Dynasty Skill
|
||||||
|
|
||||||
|
The workflow is integrated into the Paper Dynasty skill:
|
||||||
|
|
||||||
|
**Triggers**:
|
||||||
|
- "Create custom cards"
|
||||||
|
- "I want to make fictional player cards"
|
||||||
|
- "Generate custom players using archetypes"
|
||||||
|
|
||||||
|
**Skill updates**:
|
||||||
|
- Added to workflow list in SKILL.md
|
||||||
|
- Documented in `workflows/custom-card-creation.md`
|
||||||
|
- Included in workflow selection table
|
||||||
|
|
||||||
|
## Comparison to Manual Process
|
||||||
|
|
||||||
|
### Before (Manual Spreadsheet)
|
||||||
|
1. Manually type all ratings in spreadsheet
|
||||||
|
2. Formula calculates OPSvL, OPSvR
|
||||||
|
3. Manual formula: `OPSvL + OPSvR + min(OPSvL, OPSvR)` (batters)
|
||||||
|
4. Manually create battingcard/pitchingcard record
|
||||||
|
5. Manually create Player record
|
||||||
|
6. Manually create cardpositions records
|
||||||
|
7. No iterative refinement - commit or start over
|
||||||
|
8. Time-consuming and error-prone
|
||||||
|
|
||||||
|
### After (Archetype System)
|
||||||
|
1. Choose archetype that matches desired profile
|
||||||
|
2. Enter player name, team, positions
|
||||||
|
3. System calculates ALL ratings automatically
|
||||||
|
4. Review with full stat breakdown
|
||||||
|
5. Iterate and tweak if needed
|
||||||
|
6. Accept → system creates ALL database records
|
||||||
|
7. Repeatable and consistent
|
||||||
|
8. ~5 minutes per player vs ~20-30 minutes
|
||||||
|
|
||||||
|
## Future Enhancements
|
||||||
|
|
||||||
|
Possible improvements:
|
||||||
|
- [ ] Implement percentage tweaking (adjust power, contact, speed)
|
||||||
|
- [ ] Manual D20 rating adjustments with live validation
|
||||||
|
- [ ] Defensive rating calculator per position
|
||||||
|
- [ ] Import/export player profiles as JSON
|
||||||
|
- [ ] Batch creation from CSV
|
||||||
|
- [ ] Visual card preview during review
|
||||||
|
- [ ] Save custom archetypes
|
||||||
|
- [ ] Archetype mixing (50% Power Slugger + 50% Speedster)
|
||||||
|
|
||||||
|
## Testing
|
||||||
|
|
||||||
|
Run the calculator demo:
|
||||||
|
```bash
|
||||||
|
source venv/bin/activate
|
||||||
|
python -m custom_cards.archetype_calculator
|
||||||
|
```
|
||||||
|
|
||||||
|
View archetype descriptions:
|
||||||
|
```bash
|
||||||
|
python -c "from custom_cards import describe_archetypes; print(describe_archetypes('batter'))"
|
||||||
|
```
|
||||||
|
|
||||||
|
## Technical Details
|
||||||
|
|
||||||
|
### Dependencies
|
||||||
|
- pandas
|
||||||
|
- pydantic
|
||||||
|
- aiohttp
|
||||||
|
- pybaseball (indirect via creation_helpers)
|
||||||
|
|
||||||
|
### D20 System
|
||||||
|
Paper Dynasty uses a 20-sided die system with 5.4x multiplier = 108 total chances per plate appearance/batter faced.
|
||||||
|
|
||||||
|
Example batter card vs RHP:
|
||||||
|
```
|
||||||
|
Homerun: 5.0 (4.6% chance)
|
||||||
|
Triple: 0.3 (0.3%)
|
||||||
|
Doubles: 7.8 (7.2%)
|
||||||
|
Singles: 18.0 (16.7%)
|
||||||
|
Walk: 11.7 (10.8%)
|
||||||
|
HBP: 1.3 (1.2%)
|
||||||
|
Strikeout: 27.2 (25.2%)
|
||||||
|
Other outs: 36.7 (34.0%)
|
||||||
|
-----------------------
|
||||||
|
Total: 108.0 (100%)
|
||||||
|
```
|
||||||
|
|
||||||
|
### Rarity Calculation
|
||||||
|
After ratings are created, the system:
|
||||||
|
1. Fetches ratings from battingcardratings/pitchingcardratings
|
||||||
|
2. Calculates total_OPS using the formula
|
||||||
|
3. Maps to rarity thresholds (in rarity_thresholds.py)
|
||||||
|
4. Updates player record with rarity and cost
|
||||||
|
|
||||||
|
## Troubleshooting
|
||||||
|
|
||||||
|
**"ModuleNotFoundError: creation_helpers"**
|
||||||
|
- Run from card-creation directory
|
||||||
|
- Activate virtual environment first
|
||||||
|
|
||||||
|
**"Cardset not found"**
|
||||||
|
- Create new cardset when prompted
|
||||||
|
- Verify exact cardset name spelling
|
||||||
|
|
||||||
|
**"Total chances != 108"**
|
||||||
|
- Minor rounding acceptable (<0.1)
|
||||||
|
- Report if difference > 0.5
|
||||||
|
|
||||||
|
**Ratings don't match archetype**
|
||||||
|
- Check offense_mod parameter (default 1.2)
|
||||||
|
- Verify archetype definition stats
|
||||||
|
- Check for calculation bugs in archetype_calculator.py
|
||||||
|
|
||||||
|
## Support
|
||||||
|
|
||||||
|
For issues or questions:
|
||||||
|
1. Check `workflows/custom-card-creation.md` in Paper Dynasty skill
|
||||||
|
2. Review CLAUDE.md in card-creation directory
|
||||||
|
3. Check existing custom_card_creation.py script for reference
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
**Created**: 2025-11-11
|
||||||
|
**Author**: Cal Corum with Claude Code
|
||||||
|
**Version**: 1.0
|
||||||
38
custom_cards/__init__.py
Normal file
38
custom_cards/__init__.py
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
"""
|
||||||
|
Custom card creation system for Paper Dynasty fictional players.
|
||||||
|
|
||||||
|
This package provides an archetype-based system for creating custom player cards
|
||||||
|
without needing real baseball statistics.
|
||||||
|
"""
|
||||||
|
|
||||||
|
from .archetype_definitions import (
|
||||||
|
BATTER_ARCHETYPES,
|
||||||
|
PITCHER_ARCHETYPES,
|
||||||
|
BatterArchetype,
|
||||||
|
PitcherArchetype,
|
||||||
|
describe_archetypes,
|
||||||
|
get_archetype,
|
||||||
|
list_archetypes,
|
||||||
|
)
|
||||||
|
|
||||||
|
from .archetype_calculator import (
|
||||||
|
BatterRatingCalculator,
|
||||||
|
PitcherRatingCalculator,
|
||||||
|
calculate_total_ops,
|
||||||
|
)
|
||||||
|
|
||||||
|
from .interactive_creator import CustomCardCreator
|
||||||
|
|
||||||
|
__all__ = [
|
||||||
|
'BATTER_ARCHETYPES',
|
||||||
|
'PITCHER_ARCHETYPES',
|
||||||
|
'BatterArchetype',
|
||||||
|
'PitcherArchetype',
|
||||||
|
'describe_archetypes',
|
||||||
|
'get_archetype',
|
||||||
|
'list_archetypes',
|
||||||
|
'BatterRatingCalculator',
|
||||||
|
'PitcherRatingCalculator',
|
||||||
|
'calculate_total_ops',
|
||||||
|
'CustomCardCreator',
|
||||||
|
]
|
||||||
588
custom_cards/archetype_calculator.py
Normal file
588
custom_cards/archetype_calculator.py
Normal file
@ -0,0 +1,588 @@
|
|||||||
|
"""
|
||||||
|
Converts baseball archetype statistics to Paper Dynasty D20 game mechanics.
|
||||||
|
|
||||||
|
Takes traditional baseball stats (AVG, OBP, SLG, etc.) and converts them to
|
||||||
|
the detailed D20 probability system (chances out of 108) used in the game.
|
||||||
|
"""
|
||||||
|
|
||||||
|
import math
|
||||||
|
from typing import Dict, Any
|
||||||
|
from decimal import Decimal
|
||||||
|
from creation_helpers import mround, sanitize_chance_output
|
||||||
|
from custom_cards.archetype_definitions import BatterArchetype, PitcherArchetype
|
||||||
|
|
||||||
|
|
||||||
|
def round_to_05(value):
|
||||||
|
"""Round to nearest 0.05 (Stratomatic standard). All ratings must be multiples of 0.05."""
|
||||||
|
return round(value * 20) / 20
|
||||||
|
|
||||||
|
|
||||||
|
class BatterRatingCalculator:
|
||||||
|
"""Converts batter archetype stats to D20 game mechanics."""
|
||||||
|
|
||||||
|
def __init__(self, archetype: BatterArchetype, offense_mod: float = 1.2):
|
||||||
|
"""
|
||||||
|
Initialize calculator with an archetype.
|
||||||
|
|
||||||
|
Args:
|
||||||
|
archetype: BatterArchetype with traditional stats
|
||||||
|
offense_mod: Offensive modifier (default 1.2 from existing system)
|
||||||
|
"""
|
||||||
|
self.arch = archetype
|
||||||
|
self.offense_mod = offense_mod
|
||||||
|
|
||||||
|
def calculate_ratings(self, battingcard_id: int) -> list[dict]:
|
||||||
|
"""
|
||||||
|
Calculate D20 ratings for both vs L and vs R.
|
||||||
|
|
||||||
|
Returns list of two rating dictionaries (vs L, vs R)
|
||||||
|
"""
|
||||||
|
return [
|
||||||
|
self._calculate_split(battingcard_id, 'L'),
|
||||||
|
self._calculate_split(battingcard_id, 'R')
|
||||||
|
]
|
||||||
|
|
||||||
|
def _calculate_split(self, battingcard_id: int, vs_hand: str) -> dict:
|
||||||
|
"""Calculate ratings for one split (vs L or vs R)."""
|
||||||
|
# Get stats for this split
|
||||||
|
if vs_hand == 'L':
|
||||||
|
avg = self.arch.avg_vs_l
|
||||||
|
obp = self.arch.obp_vs_l
|
||||||
|
slg = self.arch.slg_vs_l
|
||||||
|
bb_pct = self.arch.bb_pct_vs_l
|
||||||
|
k_pct = self.arch.k_pct_vs_l
|
||||||
|
else:
|
||||||
|
avg = self.arch.avg_vs_r
|
||||||
|
obp = self.arch.obp_vs_r
|
||||||
|
slg = self.arch.slg_vs_r
|
||||||
|
bb_pct = self.arch.bb_pct_vs_r
|
||||||
|
k_pct = self.arch.k_pct_vs_r
|
||||||
|
|
||||||
|
# Calculate base chances out of 108 (using offense modifier)
|
||||||
|
all_hits = sanitize_chance_output(108 * self.offense_mod * avg)
|
||||||
|
all_other_ob = sanitize_chance_output(108 * self.offense_mod * bb_pct)
|
||||||
|
all_outs = mround(108 - all_hits - all_other_ob)
|
||||||
|
|
||||||
|
# Distribute hits by type based on archetype power profile
|
||||||
|
hits_breakdown = self._distribute_hits(all_hits, slg, avg)
|
||||||
|
|
||||||
|
# Distribute walks and HBP (assume 90% walks, 10% HBP)
|
||||||
|
walk = mround(all_other_ob * 0.90)
|
||||||
|
hbp = mround(all_other_ob - walk)
|
||||||
|
|
||||||
|
# Distribute outs by type
|
||||||
|
outs_breakdown = self._distribute_outs(all_outs, k_pct)
|
||||||
|
|
||||||
|
# Build the rating dict
|
||||||
|
rating = {
|
||||||
|
'battingcard_id': battingcard_id,
|
||||||
|
'bat_hand': 'R', # Will be overridden by actual player hand
|
||||||
|
'vs_hand': vs_hand,
|
||||||
|
|
||||||
|
# Hits
|
||||||
|
'homerun': hits_breakdown['homerun'],
|
||||||
|
'bp_homerun': hits_breakdown['bp_homerun'],
|
||||||
|
'triple': hits_breakdown['triple'],
|
||||||
|
'double_three': hits_breakdown['double_three'],
|
||||||
|
'double_two': hits_breakdown['double_two'],
|
||||||
|
'double_pull': hits_breakdown['double_pull'],
|
||||||
|
'single_two': hits_breakdown['single_two'],
|
||||||
|
'single_one': hits_breakdown['single_one'],
|
||||||
|
'single_center': hits_breakdown['single_center'],
|
||||||
|
'bp_single': hits_breakdown['bp_single'],
|
||||||
|
|
||||||
|
# On-base
|
||||||
|
'hbp': float(hbp),
|
||||||
|
'walk': float(walk),
|
||||||
|
|
||||||
|
# Outs
|
||||||
|
'strikeout': outs_breakdown['strikeout'],
|
||||||
|
'lineout': outs_breakdown['lineout'],
|
||||||
|
'popout': outs_breakdown['popout'],
|
||||||
|
'flyout_a': outs_breakdown['flyout_a'],
|
||||||
|
'flyout_bq': outs_breakdown['flyout_bq'],
|
||||||
|
'flyout_lf_b': outs_breakdown['flyout_lf_b'],
|
||||||
|
'flyout_rf_b': outs_breakdown['flyout_rf_b'],
|
||||||
|
'groundout_a': outs_breakdown['groundout_a'],
|
||||||
|
'groundout_b': outs_breakdown['groundout_b'],
|
||||||
|
'groundout_c': outs_breakdown['groundout_c'],
|
||||||
|
|
||||||
|
# Percentages (for spray and contact quality)
|
||||||
|
'hard_rate': self.arch.hard_pct,
|
||||||
|
'med_rate': self.arch.med_pct,
|
||||||
|
'soft_rate': self.arch.soft_pct,
|
||||||
|
'pull_rate': self.arch.pull_pct,
|
||||||
|
'center_rate': self.arch.center_pct,
|
||||||
|
'slap_rate': self.arch.oppo_pct,
|
||||||
|
|
||||||
|
# Calculated stats (for reference)
|
||||||
|
'avg': float(avg),
|
||||||
|
'obp': float(obp),
|
||||||
|
'slg': float(slg),
|
||||||
|
}
|
||||||
|
|
||||||
|
return rating
|
||||||
|
|
||||||
|
def _distribute_hits(self, total_hits: float, slg: float, avg: float) -> dict:
|
||||||
|
"""Distribute hits among HR, 3B, 2B, 1B based on slugging and archetype."""
|
||||||
|
# Calculate total bases from SLG
|
||||||
|
total_bases = slg * 108
|
||||||
|
|
||||||
|
# Use archetype power profile to distribute
|
||||||
|
hr_count = mround(total_hits * self.arch.hr_per_hit)
|
||||||
|
triple_count = mround(total_hits * self.arch.triple_per_hit)
|
||||||
|
double_count = mround(total_hits * self.arch.double_per_hit)
|
||||||
|
single_count = total_hits - hr_count - triple_count - double_count
|
||||||
|
|
||||||
|
# Distribute home runs
|
||||||
|
# BP-HR must be whole number: 1 for low power, 2-3 for moderate, 4+ for high
|
||||||
|
if hr_count < 3:
|
||||||
|
bp_homerun = 1.0 # Low power gets 1 BP-HR
|
||||||
|
elif hr_count < 6:
|
||||||
|
bp_homerun = 2.0 # Moderate power gets 2 BP-HR
|
||||||
|
else:
|
||||||
|
bp_homerun = 3.0 # High power gets 3 BP-HR
|
||||||
|
homerun = hr_count - bp_homerun
|
||||||
|
|
||||||
|
# Distribute doubles by location based on spray chart
|
||||||
|
# Double*** (double_three) is reserved for special occasions - default to 0.0
|
||||||
|
double_three = 0.0
|
||||||
|
double_pull = mround(double_count * self.arch.pull_pct)
|
||||||
|
double_two = mround(double_count - double_pull) # All remaining doubles go to 2-zone
|
||||||
|
|
||||||
|
# Distribute singles by location
|
||||||
|
# BP-Single must be whole number: standard is 5.0, can vary 3.0-7.0
|
||||||
|
bp_single = 5.0 # Standard ballpark single value
|
||||||
|
|
||||||
|
# Infield hits go to single_two
|
||||||
|
ifh_count = mround(single_count * self.arch.ifh_pct)
|
||||||
|
remaining_singles = single_count - ifh_count - bp_single
|
||||||
|
|
||||||
|
single_center = mround(remaining_singles * self.arch.center_pct)
|
||||||
|
single_one = mround(remaining_singles * self.arch.oppo_pct)
|
||||||
|
single_two = mround(ifh_count + (remaining_singles - single_center - single_one))
|
||||||
|
|
||||||
|
return {
|
||||||
|
'homerun': round_to_05(homerun),
|
||||||
|
'bp_homerun': round_to_05(bp_homerun),
|
||||||
|
'triple': round_to_05(triple_count),
|
||||||
|
'double_three': round_to_05(double_three),
|
||||||
|
'double_two': round_to_05(double_two),
|
||||||
|
'double_pull': round_to_05(double_pull),
|
||||||
|
'single_two': round_to_05(single_two),
|
||||||
|
'single_one': round_to_05(single_one),
|
||||||
|
'single_center': round_to_05(single_center),
|
||||||
|
'bp_single': round_to_05(bp_single),
|
||||||
|
}
|
||||||
|
|
||||||
|
def _distribute_outs(self, total_outs: float, k_pct: float) -> dict:
|
||||||
|
"""Distribute outs among K, lineouts, flyouts, groundouts."""
|
||||||
|
# Strikeouts
|
||||||
|
strikeout = mround(total_outs * (k_pct / (1 - self.arch.bb_pct_vs_r - self.arch.avg_vs_r)))
|
||||||
|
|
||||||
|
# Remaining outs distributed by batted ball type
|
||||||
|
remaining_outs = total_outs - strikeout
|
||||||
|
|
||||||
|
# Line drives (LD% * remaining outs)
|
||||||
|
lineouts = mround(remaining_outs * self.arch.ld_pct)
|
||||||
|
|
||||||
|
# Fly balls
|
||||||
|
flyout_total = mround(remaining_outs * self.arch.fb_pct)
|
||||||
|
|
||||||
|
# Flyout A (hardest hit fly balls that don't leave the park) - rare!
|
||||||
|
# Default to 0.0, only 1.0 for power hitters (HR rate > 10%)
|
||||||
|
if self.arch.hr_per_hit >= 0.10:
|
||||||
|
flyout_a = 1.0 # Power hitters get exactly 1.0
|
||||||
|
remaining_flyballs = flyout_total - 1.0
|
||||||
|
else:
|
||||||
|
flyout_a = 0.0 # Default for non-power hitters
|
||||||
|
remaining_flyballs = flyout_total
|
||||||
|
|
||||||
|
# Distribute remaining fly outs: BQ (center), LF-B, RF-B
|
||||||
|
flyout_bq = mround(remaining_flyballs * 0.40)
|
||||||
|
flyout_lf_b = mround(remaining_flyballs * 0.30)
|
||||||
|
flyout_rf_b = mround(remaining_flyballs - flyout_bq - flyout_lf_b)
|
||||||
|
|
||||||
|
# Pop outs - always default to 0.0 (will be added during image generation if needed)
|
||||||
|
popout = 0.0
|
||||||
|
|
||||||
|
# Ground balls
|
||||||
|
groundout_total = mround(remaining_outs * self.arch.gb_pct)
|
||||||
|
# Distribute ground outs: A (double play), B, C
|
||||||
|
groundout_a = mround(groundout_total * 0.25) # DP balls
|
||||||
|
groundout_b = mround(groundout_total * 0.40)
|
||||||
|
groundout_c = mround(groundout_total - groundout_a - groundout_b)
|
||||||
|
|
||||||
|
return {
|
||||||
|
'strikeout': float(strikeout),
|
||||||
|
'lineout': float(lineouts),
|
||||||
|
'popout': float(popout),
|
||||||
|
'flyout_a': float(flyout_a),
|
||||||
|
'flyout_bq': float(flyout_bq),
|
||||||
|
'flyout_lf_b': float(flyout_lf_b),
|
||||||
|
'flyout_rf_b': float(flyout_rf_b),
|
||||||
|
'groundout_a': float(groundout_a),
|
||||||
|
'groundout_b': float(groundout_b),
|
||||||
|
'groundout_c': float(groundout_c),
|
||||||
|
}
|
||||||
|
|
||||||
|
def calculate_baserunning(self) -> dict:
|
||||||
|
"""Calculate baserunning ratings from archetype in Stratomatic format."""
|
||||||
|
speed = self.arch.speed_rating
|
||||||
|
|
||||||
|
# Stratomatic stealing ratings (0-20 scale for 2d10 rolls)
|
||||||
|
# Map speed_rating (1-10) to Stratomatic steal ranges
|
||||||
|
if speed >= 9:
|
||||||
|
steal_low, steal_high, steal_auto = 4, 16, True # Elite stealer
|
||||||
|
steal_jump = 0.50 # 18/36 chances
|
||||||
|
elif speed >= 8:
|
||||||
|
steal_low, steal_high, steal_auto = 5, 14, True # Great stealer
|
||||||
|
steal_jump = 0.44 # 16/36 chances
|
||||||
|
elif speed >= 7:
|
||||||
|
steal_low, steal_high, steal_auto = 6, 12, False # Good stealer
|
||||||
|
steal_jump = 0.39 # 14/36 chances
|
||||||
|
elif speed >= 6:
|
||||||
|
steal_low, steal_high, steal_auto = 7, 11, False # Above average
|
||||||
|
steal_jump = 0.33 # 12/36 chances
|
||||||
|
elif speed >= 5:
|
||||||
|
steal_low, steal_high, steal_auto = 8, 10, False # Average
|
||||||
|
steal_jump = 0.28 # 10/36 chances
|
||||||
|
elif speed >= 4:
|
||||||
|
steal_low, steal_high, steal_auto = 9, 9, False # Below average
|
||||||
|
steal_jump = 0.22 # 8/36 chances
|
||||||
|
elif speed >= 3:
|
||||||
|
steal_low, steal_high, steal_auto = 10, 8, False # Poor
|
||||||
|
steal_jump = 0.17 # 6/36 chances
|
||||||
|
else:
|
||||||
|
steal_low, steal_high, steal_auto = 11, 6, False # Very poor
|
||||||
|
steal_jump = 0.11 # 4/36 chances
|
||||||
|
|
||||||
|
# Running: Stratomatic scale 8-17 based on XBT%
|
||||||
|
# Formula from calcs_batter.py: max(min(round(6 + (10 * (XBT% / 80))), 17), 8)
|
||||||
|
xbt_pct = self.arch.xbt_pct * 100 # Convert to percentage
|
||||||
|
running = max(min(round(6 + (10 * (xbt_pct / 80))), 17), 8)
|
||||||
|
|
||||||
|
# Hit-and-Run: Stratomatic letter grade A/B/C/D
|
||||||
|
# Based on expected BABIP from archetype
|
||||||
|
# Better estimate: high AVG + low HR + low K = high BABIP
|
||||||
|
# Formula: (AVG - HR_rate) / (1 - K_rate - HR_rate) roughly approximates BABIP
|
||||||
|
avg = self.arch.avg_vs_r
|
||||||
|
hr_rate = self.arch.hr_per_hit * avg # HR as % of PA
|
||||||
|
k_rate = self.arch.k_pct_vs_r
|
||||||
|
estimated_babip = (avg - hr_rate) / max(1 - k_rate - hr_rate, 0.5)
|
||||||
|
|
||||||
|
if estimated_babip >= 0.35:
|
||||||
|
hit_run = 'A'
|
||||||
|
elif estimated_babip >= 0.30:
|
||||||
|
hit_run = 'B'
|
||||||
|
elif estimated_babip >= 0.25:
|
||||||
|
hit_run = 'C'
|
||||||
|
else:
|
||||||
|
hit_run = 'D'
|
||||||
|
|
||||||
|
return {
|
||||||
|
'steal_low': steal_low,
|
||||||
|
'steal_high': steal_high,
|
||||||
|
'steal_auto': 1 if steal_auto else 0, # Store as int for DB
|
||||||
|
'steal_jump': steal_jump,
|
||||||
|
'running': running,
|
||||||
|
'hit_and_run': hit_run
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
class PitcherRatingCalculator:
|
||||||
|
"""Converts pitcher archetype stats to D20 game mechanics."""
|
||||||
|
|
||||||
|
def __init__(self, archetype: PitcherArchetype, offense_mod: float = 1.2):
|
||||||
|
"""
|
||||||
|
Initialize calculator with an archetype.
|
||||||
|
|
||||||
|
Args:
|
||||||
|
archetype: PitcherArchetype with traditional stats
|
||||||
|
offense_mod: Offensive modifier (default 1.2 from existing system)
|
||||||
|
"""
|
||||||
|
self.arch = archetype
|
||||||
|
self.offense_mod = offense_mod
|
||||||
|
|
||||||
|
def calculate_ratings(self, pitchingcard_id: int) -> list[dict]:
|
||||||
|
"""
|
||||||
|
Calculate D20 ratings for both vs L and vs R.
|
||||||
|
|
||||||
|
Returns list of two rating dictionaries (vs L, vs R)
|
||||||
|
"""
|
||||||
|
return [
|
||||||
|
self._calculate_split(pitchingcard_id, 'L'),
|
||||||
|
self._calculate_split(pitchingcard_id, 'R')
|
||||||
|
]
|
||||||
|
|
||||||
|
def _calculate_split(self, pitchingcard_id: int, vs_hand: str) -> dict:
|
||||||
|
"""Calculate ratings for one split (vs L or vs R hitters)."""
|
||||||
|
# Get stats for this split
|
||||||
|
if vs_hand == 'L':
|
||||||
|
avg = self.arch.avg_vs_l
|
||||||
|
obp = self.arch.obp_vs_l
|
||||||
|
slg = self.arch.slg_vs_l
|
||||||
|
bb_pct = self.arch.bb_pct_vs_l
|
||||||
|
k_pct = self.arch.k_pct_vs_l
|
||||||
|
else:
|
||||||
|
avg = self.arch.avg_vs_r
|
||||||
|
obp = self.arch.obp_vs_r
|
||||||
|
slg = self.arch.slg_vs_r
|
||||||
|
bb_pct = self.arch.bb_pct_vs_r
|
||||||
|
k_pct = self.arch.k_pct_vs_r
|
||||||
|
|
||||||
|
# Calculate base chances out of 108
|
||||||
|
all_hits = sanitize_chance_output(108 * self.offense_mod * avg)
|
||||||
|
all_other_ob = sanitize_chance_output(108 * self.offense_mod * bb_pct)
|
||||||
|
all_outs = mround(108 - all_hits - all_other_ob)
|
||||||
|
|
||||||
|
# Distribute hits by type
|
||||||
|
hits_breakdown = self._distribute_hits(all_hits, slg, avg)
|
||||||
|
|
||||||
|
# Distribute walks and HBP
|
||||||
|
walk = mround(all_other_ob * 0.90)
|
||||||
|
hbp = mround(all_other_ob - walk)
|
||||||
|
|
||||||
|
# Distribute outs by type
|
||||||
|
outs_breakdown = self._distribute_outs(all_outs, k_pct)
|
||||||
|
|
||||||
|
# Build the rating dict (same structure as batters but from pitcher perspective)
|
||||||
|
rating = {
|
||||||
|
'pitchingcard_id': pitchingcard_id,
|
||||||
|
'pitch_hand': 'R', # Will be overridden by actual pitcher hand
|
||||||
|
'vs_hand': vs_hand,
|
||||||
|
|
||||||
|
# Hits allowed
|
||||||
|
'homerun': hits_breakdown['homerun'],
|
||||||
|
'bp_homerun': hits_breakdown['bp_homerun'],
|
||||||
|
'triple': hits_breakdown['triple'],
|
||||||
|
'double_three': hits_breakdown['double_three'],
|
||||||
|
'double_two': hits_breakdown['double_two'],
|
||||||
|
'double_pull': hits_breakdown['double_pull'],
|
||||||
|
'single_two': hits_breakdown['single_two'],
|
||||||
|
'single_one': hits_breakdown['single_one'],
|
||||||
|
'single_center': hits_breakdown['single_center'],
|
||||||
|
'bp_single': hits_breakdown['bp_single'],
|
||||||
|
|
||||||
|
# On-base allowed
|
||||||
|
'hbp': float(hbp),
|
||||||
|
'walk': float(walk),
|
||||||
|
|
||||||
|
# Outs generated
|
||||||
|
'strikeout': outs_breakdown['strikeout'],
|
||||||
|
'lineout': outs_breakdown['lineout'],
|
||||||
|
'popout': outs_breakdown['popout'],
|
||||||
|
'flyout_a': outs_breakdown['flyout_a'],
|
||||||
|
'flyout_bq': outs_breakdown['flyout_bq'],
|
||||||
|
'flyout_lf_b': outs_breakdown['flyout_lf_b'],
|
||||||
|
'flyout_rf_b': outs_breakdown['flyout_rf_b'],
|
||||||
|
'groundout_a': outs_breakdown['groundout_a'],
|
||||||
|
'groundout_b': outs_breakdown['groundout_b'],
|
||||||
|
'groundout_c': outs_breakdown['groundout_c'],
|
||||||
|
|
||||||
|
# Percentages
|
||||||
|
'hard_rate': self.arch.hard_pct,
|
||||||
|
'med_rate': self.arch.med_pct,
|
||||||
|
'soft_rate': self.arch.soft_pct,
|
||||||
|
'pull_rate': self.arch.pull_pct,
|
||||||
|
'center_rate': self.arch.center_pct,
|
||||||
|
'slap_rate': self.arch.oppo_pct,
|
||||||
|
|
||||||
|
# Calculated stats
|
||||||
|
'avg': float(avg),
|
||||||
|
'obp': float(obp),
|
||||||
|
'slg': float(slg),
|
||||||
|
}
|
||||||
|
|
||||||
|
return rating
|
||||||
|
|
||||||
|
def _distribute_hits(self, total_hits: float, slg: float, avg: float) -> dict:
|
||||||
|
"""Distribute hits among HR, 3B, 2B, 1B based on power allowed."""
|
||||||
|
hr_count = mround(total_hits * self.arch.hr_per_hit)
|
||||||
|
triple_count = mround(total_hits * self.arch.triple_per_hit)
|
||||||
|
double_count = mround(total_hits * self.arch.double_per_hit)
|
||||||
|
single_count = total_hits - hr_count - triple_count - double_count
|
||||||
|
|
||||||
|
# Distribute home runs
|
||||||
|
# BP-HR must be whole number: 1 for stingy, 2 for average, 3+ for homer-prone
|
||||||
|
if hr_count < 3:
|
||||||
|
bp_homerun = 1.0
|
||||||
|
elif hr_count < 6:
|
||||||
|
bp_homerun = 2.0
|
||||||
|
else:
|
||||||
|
bp_homerun = 3.0
|
||||||
|
homerun = hr_count - bp_homerun
|
||||||
|
|
||||||
|
# Distribute doubles
|
||||||
|
# Double*** (double_three) is reserved for special occasions - default to 0.0
|
||||||
|
double_three = 0.0
|
||||||
|
double_pull = mround(double_count * self.arch.pull_pct)
|
||||||
|
double_two = mround(double_count - double_pull)
|
||||||
|
|
||||||
|
# Distribute singles
|
||||||
|
# BP-Single must be whole number: standard is 5.0
|
||||||
|
bp_single = 5.0
|
||||||
|
|
||||||
|
ifh_count = mround(single_count * self.arch.ifh_pct)
|
||||||
|
remaining_singles = single_count - ifh_count - bp_single
|
||||||
|
|
||||||
|
single_center = mround(remaining_singles * self.arch.center_pct)
|
||||||
|
single_one = mround(remaining_singles * self.arch.oppo_pct)
|
||||||
|
single_two = mround(ifh_count + (remaining_singles - single_center - single_one))
|
||||||
|
|
||||||
|
return {
|
||||||
|
'homerun': float(homerun),
|
||||||
|
'bp_homerun': float(bp_homerun),
|
||||||
|
'triple': float(triple_count),
|
||||||
|
'double_three': float(double_three),
|
||||||
|
'double_two': float(double_two),
|
||||||
|
'double_pull': float(double_pull),
|
||||||
|
'single_two': float(single_two),
|
||||||
|
'single_one': float(single_one),
|
||||||
|
'single_center': float(single_center),
|
||||||
|
'bp_single': float(bp_single),
|
||||||
|
}
|
||||||
|
|
||||||
|
def _distribute_outs(self, total_outs: float, k_pct: float) -> dict:
|
||||||
|
"""Distribute outs among K, lineouts, flyouts, groundouts."""
|
||||||
|
# Strikeouts
|
||||||
|
strikeout = mround(total_outs * (k_pct / (1 - self.arch.bb_pct_vs_r - self.arch.avg_vs_r)))
|
||||||
|
|
||||||
|
# Remaining outs
|
||||||
|
remaining_outs = total_outs - strikeout
|
||||||
|
|
||||||
|
# Line drives
|
||||||
|
lineouts = mround(remaining_outs * self.arch.ld_pct)
|
||||||
|
|
||||||
|
# Fly balls
|
||||||
|
flyout_total = mround(remaining_outs * self.arch.fb_pct)
|
||||||
|
|
||||||
|
# Flyout A (hardest hit fly balls that don't leave the park) - rare!
|
||||||
|
# Default to 0.0, only 1.0 for homer-prone pitchers (HR rate > 10%)
|
||||||
|
if self.arch.hr_per_hit >= 0.10:
|
||||||
|
flyout_a = 1.0 # Homer-prone pitchers get exactly 1.0
|
||||||
|
remaining_flyballs = flyout_total - 1.0
|
||||||
|
else:
|
||||||
|
flyout_a = 0.0 # Default for non-homer-prone pitchers
|
||||||
|
remaining_flyballs = flyout_total
|
||||||
|
|
||||||
|
# Distribute remaining fly outs: BQ (center), LF-B, RF-B
|
||||||
|
flyout_bq = mround(remaining_flyballs * 0.40)
|
||||||
|
flyout_lf_b = mround(remaining_flyballs * 0.30)
|
||||||
|
flyout_rf_b = mround(remaining_flyballs - flyout_bq - flyout_lf_b)
|
||||||
|
|
||||||
|
# Pop outs - always default to 0.0 (will be added during image generation if needed)
|
||||||
|
popout = 0.0
|
||||||
|
|
||||||
|
# Ground balls
|
||||||
|
groundout_total = mround(remaining_outs * self.arch.gb_pct)
|
||||||
|
groundout_a = mround(groundout_total * 0.25)
|
||||||
|
groundout_b = mround(groundout_total * 0.40)
|
||||||
|
groundout_c = mround(groundout_total - groundout_a - groundout_b)
|
||||||
|
|
||||||
|
return {
|
||||||
|
'strikeout': float(strikeout),
|
||||||
|
'lineout': float(lineouts),
|
||||||
|
'popout': float(popout),
|
||||||
|
'flyout_a': float(flyout_a),
|
||||||
|
'flyout_bq': float(flyout_bq),
|
||||||
|
'flyout_lf_b': float(flyout_lf_b),
|
||||||
|
'flyout_rf_b': float(flyout_rf_b),
|
||||||
|
'groundout_a': float(groundout_a),
|
||||||
|
'groundout_b': float(groundout_b),
|
||||||
|
'groundout_c': float(groundout_c),
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
def calculate_total_ops(ratings_vl: dict, ratings_vr: dict, is_pitcher: bool = False) -> float:
|
||||||
|
"""
|
||||||
|
Calculate total_OPS using Paper Dynasty formula.
|
||||||
|
|
||||||
|
For batters: (OPS_vR + OPS_vL + min(OPS_vL, OPS_vR)) / 3
|
||||||
|
For pitchers: (OPS_vR + OPS_vL + max(OPS_vL, OPS_vR)) / 3
|
||||||
|
|
||||||
|
Args:
|
||||||
|
ratings_vl: Rating dict for vs L
|
||||||
|
ratings_vr: Rating dict for vs R
|
||||||
|
is_pitcher: True if calculating for pitcher, False for batter
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
Total OPS value
|
||||||
|
"""
|
||||||
|
ops_vl = ratings_vl['obp'] + ratings_vl['slg']
|
||||||
|
ops_vr = ratings_vr['obp'] + ratings_vr['slg']
|
||||||
|
|
||||||
|
if is_pitcher:
|
||||||
|
return (ops_vr + ops_vl + max(ops_vl, ops_vr)) / 3
|
||||||
|
else:
|
||||||
|
return (ops_vr + ops_vl + min(ops_vl, ops_vr)) / 3
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
# Demo the calculator
|
||||||
|
from custom_cards.archetype_definitions import BATTER_ARCHETYPES, PITCHER_ARCHETYPES
|
||||||
|
|
||||||
|
print("\n" + "="*60)
|
||||||
|
print("BATTER ARCHETYPE CALCULATOR DEMO")
|
||||||
|
print("="*60)
|
||||||
|
|
||||||
|
arch = BATTER_ARCHETYPES['power_slugger']
|
||||||
|
calc = BatterRatingCalculator(arch)
|
||||||
|
ratings = calc.calculate_ratings(battingcard_id=999)
|
||||||
|
baserunning = calc.calculate_baserunning()
|
||||||
|
|
||||||
|
print(f"\nArchetype: {arch.name}")
|
||||||
|
print(f"Description: {arch.description}\n")
|
||||||
|
|
||||||
|
for rating in ratings:
|
||||||
|
vs_hand = rating['vs_hand']
|
||||||
|
print(f"VS {vs_hand}HP:")
|
||||||
|
print(f" AVG: {rating['avg']:.3f} OBP: {rating['obp']:.3f} SLG: {rating['slg']:.3f}")
|
||||||
|
print(f" HR: {rating['homerun']:.2f} 3B: {rating['triple']:.2f} 2B: {rating['double_pull']+rating['double_two']+rating['double_three']:.2f}")
|
||||||
|
print(f" BB: {rating['walk']:.2f} K: {rating['strikeout']:.2f}")
|
||||||
|
|
||||||
|
# Verify total = 108
|
||||||
|
total = sum([
|
||||||
|
rating['homerun'], rating['bp_homerun'], rating['triple'],
|
||||||
|
rating['double_three'], rating['double_two'], rating['double_pull'],
|
||||||
|
rating['single_two'], rating['single_one'], rating['single_center'], rating['bp_single'],
|
||||||
|
rating['hbp'], rating['walk'], rating['strikeout'],
|
||||||
|
rating['lineout'], rating['popout'],
|
||||||
|
rating['flyout_a'], rating['flyout_bq'], rating['flyout_lf_b'], rating['flyout_rf_b'],
|
||||||
|
rating['groundout_a'], rating['groundout_b'], rating['groundout_c']
|
||||||
|
])
|
||||||
|
print(f" Total chances: {total:.2f} (should be 108.0)\n")
|
||||||
|
|
||||||
|
total_ops = calculate_total_ops(ratings[0], ratings[1], is_pitcher=False)
|
||||||
|
print(f"Total OPS: {total_ops:.3f}\n")
|
||||||
|
|
||||||
|
print("\n" + "="*60)
|
||||||
|
print("PITCHER ARCHETYPE CALCULATOR DEMO")
|
||||||
|
print("="*60)
|
||||||
|
|
||||||
|
arch = PITCHER_ARCHETYPES['ace']
|
||||||
|
calc = PitcherRatingCalculator(arch)
|
||||||
|
ratings = calc.calculate_ratings(pitchingcard_id=999)
|
||||||
|
|
||||||
|
print(f"\nArchetype: {arch.name}")
|
||||||
|
print(f"Description: {arch.description}\n")
|
||||||
|
|
||||||
|
for rating in ratings:
|
||||||
|
vs_hand = rating['vs_hand']
|
||||||
|
print(f"VS {vs_hand}HB:")
|
||||||
|
print(f" AVG: {rating['avg']:.3f} OBP: {rating['obp']:.3f} SLG: {rating['slg']:.3f}")
|
||||||
|
print(f" HR: {rating['homerun']:.2f} BB: {rating['walk']:.2f} K: {rating['strikeout']:.2f}")
|
||||||
|
|
||||||
|
total = sum([
|
||||||
|
rating['homerun'], rating['bp_homerun'], rating['triple'],
|
||||||
|
rating['double_three'], rating['double_two'], rating['double_pull'],
|
||||||
|
rating['single_two'], rating['single_one'], rating['single_center'], rating['bp_single'],
|
||||||
|
rating['hbp'], rating['walk'], rating['strikeout'],
|
||||||
|
rating['lineout'], rating['popout'],
|
||||||
|
rating['flyout_a'], rating['flyout_bq'], rating['flyout_lf_b'], rating['flyout_rf_b'],
|
||||||
|
rating['groundout_a'], rating['groundout_b'], rating['groundout_c']
|
||||||
|
])
|
||||||
|
print(f" Total chances: {total:.2f} (should be 108.0)\n")
|
||||||
|
|
||||||
|
total_ops = calculate_total_ops(ratings[0], ratings[1], is_pitcher=True)
|
||||||
|
print(f"Total OPS Against: {total_ops:.3f}\n")
|
||||||
471
custom_cards/archetype_definitions.py
Normal file
471
custom_cards/archetype_definitions.py
Normal file
@ -0,0 +1,471 @@
|
|||||||
|
"""
|
||||||
|
Baseball player archetype definitions for custom card creation.
|
||||||
|
|
||||||
|
Each archetype defines typical stat profiles that will be converted to D20 game mechanics.
|
||||||
|
Stats are expressed as traditional baseball statistics that users understand.
|
||||||
|
"""
|
||||||
|
|
||||||
|
from typing import Dict, Any, Literal
|
||||||
|
from dataclasses import dataclass, field
|
||||||
|
|
||||||
|
|
||||||
|
@dataclass
|
||||||
|
class BatterArchetype:
|
||||||
|
"""Defines a batting archetype with traditional stat profiles."""
|
||||||
|
name: str
|
||||||
|
description: str
|
||||||
|
|
||||||
|
# Hitting stats vs RHP (right-handed pitchers)
|
||||||
|
avg_vs_r: float # Batting average
|
||||||
|
obp_vs_r: float # On-base percentage
|
||||||
|
slg_vs_r: float # Slugging percentage
|
||||||
|
bb_pct_vs_r: float # Walk rate (BB/PA)
|
||||||
|
k_pct_vs_r: float # Strikeout rate (K/PA)
|
||||||
|
|
||||||
|
# Hitting stats vs LHP (left-handed pitchers)
|
||||||
|
avg_vs_l: float
|
||||||
|
obp_vs_l: float
|
||||||
|
slg_vs_l: float
|
||||||
|
bb_pct_vs_l: float
|
||||||
|
k_pct_vs_l: float
|
||||||
|
|
||||||
|
# Power distribution (percentage of hits)
|
||||||
|
hr_per_hit: float # Home run rate
|
||||||
|
triple_per_hit: float # Triple rate
|
||||||
|
double_per_hit: float # Double rate
|
||||||
|
# singles = 1 - (hr_rate + triple_rate + double_rate)
|
||||||
|
|
||||||
|
# Batted ball profile (percentages)
|
||||||
|
gb_pct: float # Ground ball percentage
|
||||||
|
fb_pct: float # Fly ball percentage
|
||||||
|
ld_pct: float # Line drive percentage
|
||||||
|
|
||||||
|
# Batted ball quality
|
||||||
|
hard_pct: float # Hard contact percentage
|
||||||
|
med_pct: float # Medium contact percentage
|
||||||
|
soft_pct: float # Soft contact percentage
|
||||||
|
|
||||||
|
# Spray chart distribution
|
||||||
|
pull_pct: float # Pull percentage
|
||||||
|
center_pct: float # Center percentage
|
||||||
|
oppo_pct: float # Opposite field percentage
|
||||||
|
|
||||||
|
# Infield hits (for singles distribution)
|
||||||
|
ifh_pct: float # Infield hit percentage of hits
|
||||||
|
|
||||||
|
# Specific power metrics
|
||||||
|
hr_fb_pct: float # Home run per fly ball rate
|
||||||
|
|
||||||
|
# Baserunning
|
||||||
|
speed_rating: int # 1-10 scale for steal success
|
||||||
|
steal_jump: int # 1-10 scale for jump rating
|
||||||
|
xbt_pct: float # Extra base taken percentage
|
||||||
|
|
||||||
|
# Situational hitting
|
||||||
|
hit_run_skill: int # 1-10 scale for hit-and-run ability
|
||||||
|
|
||||||
|
# Defensive profile (will be refined per position)
|
||||||
|
primary_positions: list[str] = field(default_factory=list)
|
||||||
|
defensive_rating: int = 5 # 1-10 scale, default average
|
||||||
|
|
||||||
|
|
||||||
|
@dataclass
|
||||||
|
class PitcherArchetype:
|
||||||
|
"""Defines a pitching archetype with traditional stat profiles."""
|
||||||
|
name: str
|
||||||
|
description: str
|
||||||
|
|
||||||
|
# Pitching stats vs RHB (right-handed batters)
|
||||||
|
avg_vs_r: float # Batting average against
|
||||||
|
obp_vs_r: float # On-base percentage against
|
||||||
|
slg_vs_r: float # Slugging percentage against
|
||||||
|
bb_pct_vs_r: float # Walk rate (BB/TBF)
|
||||||
|
k_pct_vs_r: float # Strikeout rate (K/TBF)
|
||||||
|
|
||||||
|
# Pitching stats vs LHB (left-handed batters)
|
||||||
|
avg_vs_l: float
|
||||||
|
obp_vs_l: float
|
||||||
|
slg_vs_l: float
|
||||||
|
bb_pct_vs_l: float
|
||||||
|
k_pct_vs_l: float
|
||||||
|
|
||||||
|
# Batted ball profile allowed
|
||||||
|
gb_pct: float # Ground ball percentage
|
||||||
|
fb_pct: float # Fly ball percentage
|
||||||
|
ld_pct: float # Line drive percentage
|
||||||
|
|
||||||
|
# Contact quality allowed
|
||||||
|
hard_pct: float
|
||||||
|
med_pct: float
|
||||||
|
soft_pct: float
|
||||||
|
|
||||||
|
# Spray chart allowed
|
||||||
|
pull_pct: float
|
||||||
|
center_pct: float
|
||||||
|
oppo_pct: float
|
||||||
|
|
||||||
|
# Power allowed
|
||||||
|
hr_per_hit: float
|
||||||
|
triple_per_hit: float
|
||||||
|
double_per_hit: float
|
||||||
|
hr_fb_pct: float
|
||||||
|
|
||||||
|
# Infield hits allowed
|
||||||
|
ifh_pct: float
|
||||||
|
|
||||||
|
# Role-specific ratings
|
||||||
|
starter_rating: int # 1-10 scale (4+ = SP, <4 = RP)
|
||||||
|
relief_rating: int # 1-10 scale
|
||||||
|
closer_rating: int | None = None # 1-10 scale, None if not closer
|
||||||
|
|
||||||
|
# Stamina/Endurance (for starters)
|
||||||
|
innings_per_start: float = 6.0 # Average IP per start
|
||||||
|
pitch_efficiency: float = 0.85 # Pitches per inning efficiency
|
||||||
|
|
||||||
|
|
||||||
|
# ============================================================================
|
||||||
|
# BATTER ARCHETYPES
|
||||||
|
# ============================================================================
|
||||||
|
|
||||||
|
BATTER_ARCHETYPES: Dict[str, BatterArchetype] = {
|
||||||
|
"power_slugger": BatterArchetype(
|
||||||
|
name="Power Slugger",
|
||||||
|
description="High power, lots of home runs, lower average, high strikeout rate",
|
||||||
|
avg_vs_r=0.240, obp_vs_r=0.320, slg_vs_r=0.480,
|
||||||
|
bb_pct_vs_r=0.10, k_pct_vs_r=0.28,
|
||||||
|
avg_vs_l=0.250, obp_vs_l=0.330, slg_vs_l=0.500,
|
||||||
|
bb_pct_vs_l=0.11, k_pct_vs_l=0.26,
|
||||||
|
hr_per_hit=0.18, triple_per_hit=0.01, double_per_hit=0.25,
|
||||||
|
gb_pct=0.38, fb_pct=0.42, ld_pct=0.20,
|
||||||
|
hard_pct=0.42, med_pct=0.40, soft_pct=0.18,
|
||||||
|
pull_pct=0.45, center_pct=0.32, oppo_pct=0.23,
|
||||||
|
ifh_pct=0.05, hr_fb_pct=0.18,
|
||||||
|
speed_rating=4, steal_jump=4, xbt_pct=0.45,
|
||||||
|
hit_run_skill=4,
|
||||||
|
primary_positions=["LF", "RF", "1B", "DH"],
|
||||||
|
defensive_rating=4
|
||||||
|
),
|
||||||
|
|
||||||
|
"contact_hitter": BatterArchetype(
|
||||||
|
name="Contact Hitter",
|
||||||
|
description="High average, low strikeouts, gap power, good situational hitting",
|
||||||
|
avg_vs_r=0.300, obp_vs_r=0.360, slg_vs_r=0.450,
|
||||||
|
bb_pct_vs_r=0.08, k_pct_vs_r=0.14,
|
||||||
|
avg_vs_l=0.285, obp_vs_l=0.345, slg_vs_l=0.430,
|
||||||
|
bb_pct_vs_l=0.07, k_pct_vs_l=0.16,
|
||||||
|
hr_per_hit=0.08, triple_per_hit=0.03, double_per_hit=0.28,
|
||||||
|
gb_pct=0.42, fb_pct=0.32, ld_pct=0.26,
|
||||||
|
hard_pct=0.35, med_pct=0.48, soft_pct=0.17,
|
||||||
|
pull_pct=0.38, center_pct=0.35, oppo_pct=0.27,
|
||||||
|
ifh_pct=0.08, hr_fb_pct=0.10,
|
||||||
|
speed_rating=6, steal_jump=6, xbt_pct=0.52,
|
||||||
|
hit_run_skill=8,
|
||||||
|
primary_positions=["2B", "CF", "RF"],
|
||||||
|
defensive_rating=6
|
||||||
|
),
|
||||||
|
|
||||||
|
"speedster": BatterArchetype(
|
||||||
|
name="Speedster",
|
||||||
|
description="Elite speed, high average, slap hitter, steals bases, excellent defense",
|
||||||
|
avg_vs_r=0.285, obp_vs_r=0.350, slg_vs_r=0.390,
|
||||||
|
bb_pct_vs_r=0.08, k_pct_vs_r=0.18,
|
||||||
|
avg_vs_l=0.270, obp_vs_l=0.335, slg_vs_l=0.375,
|
||||||
|
bb_pct_vs_l=0.07, k_pct_vs_l=0.20,
|
||||||
|
hr_per_hit=0.03, triple_per_hit=0.06, double_per_hit=0.22,
|
||||||
|
gb_pct=0.52, fb_pct=0.24, ld_pct=0.24,
|
||||||
|
hard_pct=0.30, med_pct=0.50, soft_pct=0.20,
|
||||||
|
pull_pct=0.30, center_pct=0.38, oppo_pct=0.32,
|
||||||
|
ifh_pct=0.12, hr_fb_pct=0.06,
|
||||||
|
speed_rating=9, steal_jump=9, xbt_pct=0.62,
|
||||||
|
hit_run_skill=9,
|
||||||
|
primary_positions=["CF", "SS", "2B"],
|
||||||
|
defensive_rating=8
|
||||||
|
),
|
||||||
|
|
||||||
|
"balanced_star": BatterArchetype(
|
||||||
|
name="Balanced Star",
|
||||||
|
description="Well-rounded five-tool player, above average in everything",
|
||||||
|
avg_vs_r=0.285, obp_vs_r=0.360, slg_vs_r=0.490,
|
||||||
|
bb_pct_vs_r=0.10, k_pct_vs_r=0.20,
|
||||||
|
avg_vs_l=0.275, obp_vs_l=0.350, slg_vs_l=0.475,
|
||||||
|
bb_pct_vs_l=0.09, k_pct_vs_l=0.21,
|
||||||
|
hr_per_hit=0.12, triple_per_hit=0.03, double_per_hit=0.26,
|
||||||
|
gb_pct=0.40, fb_pct=0.36, ld_pct=0.24,
|
||||||
|
hard_pct=0.38, med_pct=0.44, soft_pct=0.18,
|
||||||
|
pull_pct=0.40, center_pct=0.35, oppo_pct=0.25,
|
||||||
|
ifh_pct=0.06, hr_fb_pct=0.14,
|
||||||
|
speed_rating=7, steal_jump=7, xbt_pct=0.55,
|
||||||
|
hit_run_skill=7,
|
||||||
|
primary_positions=["CF", "RF", "3B"],
|
||||||
|
defensive_rating=7
|
||||||
|
),
|
||||||
|
|
||||||
|
"patient_walker": BatterArchetype(
|
||||||
|
name="Patient Walker",
|
||||||
|
description="Elite plate discipline, high walks, good OBP, moderate power",
|
||||||
|
avg_vs_r=0.260, obp_vs_r=0.370, slg_vs_r=0.440,
|
||||||
|
bb_pct_vs_r=0.15, k_pct_vs_r=0.20,
|
||||||
|
avg_vs_l=0.255, obp_vs_l=0.360, slg_vs_l=0.430,
|
||||||
|
bb_pct_vs_l=0.14, k_pct_vs_l=0.21,
|
||||||
|
hr_per_hit=0.10, triple_per_hit=0.02, double_per_hit=0.26,
|
||||||
|
gb_pct=0.40, fb_pct=0.36, ld_pct=0.24,
|
||||||
|
hard_pct=0.36, med_pct=0.45, soft_pct=0.19,
|
||||||
|
pull_pct=0.40, center_pct=0.35, oppo_pct=0.25,
|
||||||
|
ifh_pct=0.06, hr_fb_pct=0.12,
|
||||||
|
speed_rating=5, steal_jump=5, xbt_pct=0.48,
|
||||||
|
hit_run_skill=6,
|
||||||
|
primary_positions=["1B", "LF", "DH"],
|
||||||
|
defensive_rating=4
|
||||||
|
),
|
||||||
|
|
||||||
|
"slap_hitter": BatterArchetype(
|
||||||
|
name="Slap Hitter",
|
||||||
|
description="Opposite field approach, puts ball in play, good speed, high BABIP",
|
||||||
|
avg_vs_r=0.290, obp_vs_r=0.345, slg_vs_r=0.380,
|
||||||
|
bb_pct_vs_r=0.07, k_pct_vs_r=0.15,
|
||||||
|
avg_vs_l=0.275, obp_vs_l=0.330, slg_vs_l=0.365,
|
||||||
|
bb_pct_vs_l=0.06, k_pct_vs_l=0.17,
|
||||||
|
hr_per_hit=0.02, triple_per_hit=0.04, double_per_hit=0.20,
|
||||||
|
gb_pct=0.50, fb_pct=0.26, ld_pct=0.24,
|
||||||
|
hard_pct=0.28, med_pct=0.52, soft_pct=0.20,
|
||||||
|
pull_pct=0.25, center_pct=0.35, oppo_pct=0.40,
|
||||||
|
ifh_pct=0.10, hr_fb_pct=0.04,
|
||||||
|
speed_rating=7, steal_jump=7, xbt_pct=0.54,
|
||||||
|
hit_run_skill=9,
|
||||||
|
primary_positions=["2B", "CF", "LF"],
|
||||||
|
defensive_rating=6
|
||||||
|
),
|
||||||
|
|
||||||
|
"three_true_outcomes": BatterArchetype(
|
||||||
|
name="Three True Outcomes",
|
||||||
|
description="Extreme power and walks, very high strikeout rate, all-or-nothing",
|
||||||
|
avg_vs_r=0.220, obp_vs_r=0.330, slg_vs_r=0.520,
|
||||||
|
bb_pct_vs_r=0.14, k_pct_vs_r=0.34,
|
||||||
|
avg_vs_l=0.230, obp_vs_l=0.340, slg_vs_l=0.540,
|
||||||
|
bb_pct_vs_l=0.15, k_pct_vs_l=0.32,
|
||||||
|
hr_per_hit=0.22, triple_per_hit=0.01, double_per_hit=0.24,
|
||||||
|
gb_pct=0.32, fb_pct=0.48, ld_pct=0.20,
|
||||||
|
hard_pct=0.48, med_pct=0.36, soft_pct=0.16,
|
||||||
|
pull_pct=0.50, center_pct=0.30, oppo_pct=0.20,
|
||||||
|
ifh_pct=0.04, hr_fb_pct=0.20,
|
||||||
|
speed_rating=3, steal_jump=3, xbt_pct=0.42,
|
||||||
|
hit_run_skill=3,
|
||||||
|
primary_positions=["1B", "DH", "LF"],
|
||||||
|
defensive_rating=3
|
||||||
|
),
|
||||||
|
|
||||||
|
"defensive_specialist": BatterArchetype(
|
||||||
|
name="Defensive Specialist",
|
||||||
|
description="Elite defense, weak bat, good contact but little power",
|
||||||
|
avg_vs_r=0.245, obp_vs_r=0.295, slg_vs_r=0.330,
|
||||||
|
bb_pct_vs_r=0.06, k_pct_vs_r=0.20,
|
||||||
|
avg_vs_l=0.235, obp_vs_l=0.285, slg_vs_l=0.320,
|
||||||
|
bb_pct_vs_l=0.05, k_pct_vs_l=0.22,
|
||||||
|
hr_per_hit=0.03, triple_per_hit=0.02, double_per_hit=0.18,
|
||||||
|
gb_pct=0.46, fb_pct=0.30, ld_pct=0.24,
|
||||||
|
hard_pct=0.28, med_pct=0.48, soft_pct=0.24,
|
||||||
|
pull_pct=0.35, center_pct=0.38, oppo_pct=0.27,
|
||||||
|
ifh_pct=0.08, hr_fb_pct=0.05,
|
||||||
|
speed_rating=6, steal_jump=6, xbt_pct=0.50,
|
||||||
|
hit_run_skill=7,
|
||||||
|
primary_positions=["SS", "C", "CF"],
|
||||||
|
defensive_rating=9
|
||||||
|
),
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# ============================================================================
|
||||||
|
# PITCHER ARCHETYPES
|
||||||
|
# ============================================================================
|
||||||
|
|
||||||
|
PITCHER_ARCHETYPES: Dict[str, PitcherArchetype] = {
|
||||||
|
"ace": PitcherArchetype(
|
||||||
|
name="Ace",
|
||||||
|
description="Elite starter, dominates both sides, excellent control, limits hard contact",
|
||||||
|
avg_vs_r=0.210, obp_vs_r=0.270, slg_vs_r=0.340,
|
||||||
|
bb_pct_vs_r=0.06, k_pct_vs_r=0.28,
|
||||||
|
avg_vs_l=0.220, obp_vs_l=0.280, slg_vs_l=0.360,
|
||||||
|
bb_pct_vs_l=0.06, k_pct_vs_l=0.26,
|
||||||
|
gb_pct=0.45, fb_pct=0.32, ld_pct=0.23,
|
||||||
|
hard_pct=0.32, med_pct=0.46, soft_pct=0.22,
|
||||||
|
pull_pct=0.38, center_pct=0.36, oppo_pct=0.26,
|
||||||
|
hr_per_hit=0.08, triple_per_hit=0.02, double_per_hit=0.24,
|
||||||
|
hr_fb_pct=0.10, ifh_pct=0.06,
|
||||||
|
starter_rating=9, relief_rating=3, closer_rating=None,
|
||||||
|
innings_per_start=7.0, pitch_efficiency=0.90
|
||||||
|
),
|
||||||
|
|
||||||
|
"power_pitcher": PitcherArchetype(
|
||||||
|
name="Power Pitcher",
|
||||||
|
description="High velocity, high strikeouts, fly ball pitcher, some walks",
|
||||||
|
avg_vs_r=0.220, obp_vs_r=0.290, slg_vs_r=0.380,
|
||||||
|
bb_pct_vs_r=0.09, k_pct_vs_r=0.30,
|
||||||
|
avg_vs_l=0.235, obp_vs_l=0.305, slg_vs_l=0.400,
|
||||||
|
bb_pct_vs_l=0.09, k_pct_vs_l=0.28,
|
||||||
|
gb_pct=0.38, fb_pct=0.40, ld_pct=0.22,
|
||||||
|
hard_pct=0.38, med_pct=0.42, soft_pct=0.20,
|
||||||
|
pull_pct=0.40, center_pct=0.35, oppo_pct=0.25,
|
||||||
|
hr_per_hit=0.12, triple_per_hit=0.02, double_per_hit=0.26,
|
||||||
|
hr_fb_pct=0.13, ifh_pct=0.05,
|
||||||
|
starter_rating=7, relief_rating=5, closer_rating=None,
|
||||||
|
innings_per_start=6.0, pitch_efficiency=0.82
|
||||||
|
),
|
||||||
|
|
||||||
|
"finesse_pitcher": PitcherArchetype(
|
||||||
|
name="Finesse Pitcher",
|
||||||
|
description="Command specialist, low walks, induces weak contact, pitch-to-contact",
|
||||||
|
avg_vs_r=0.250, obp_vs_r=0.295, slg_vs_r=0.380,
|
||||||
|
bb_pct_vs_r=0.05, k_pct_vs_r=0.18,
|
||||||
|
avg_vs_l=0.260, obp_vs_l=0.305, slg_vs_l=0.395,
|
||||||
|
bb_pct_vs_l=0.05, k_pct_vs_l=0.16,
|
||||||
|
gb_pct=0.48, fb_pct=0.30, ld_pct=0.22,
|
||||||
|
hard_pct=0.30, med_pct=0.50, soft_pct=0.20,
|
||||||
|
pull_pct=0.36, center_pct=0.38, oppo_pct=0.26,
|
||||||
|
hr_per_hit=0.08, triple_per_hit=0.02, double_per_hit=0.24,
|
||||||
|
hr_fb_pct=0.10, ifh_pct=0.07,
|
||||||
|
starter_rating=6, relief_rating=4, closer_rating=None,
|
||||||
|
innings_per_start=6.5, pitch_efficiency=0.88
|
||||||
|
),
|
||||||
|
|
||||||
|
"groundball_specialist": PitcherArchetype(
|
||||||
|
name="Groundball Specialist",
|
||||||
|
description="Induces grounders, low home runs, solid but not dominant strikeout rate",
|
||||||
|
avg_vs_r=0.255, obp_vs_r=0.310, slg_vs_r=0.360,
|
||||||
|
bb_pct_vs_r=0.08, k_pct_vs_r=0.20,
|
||||||
|
avg_vs_l=0.265, obp_vs_l=0.320, slg_vs_l=0.375,
|
||||||
|
bb_pct_vs_l=0.08, k_pct_vs_l=0.18,
|
||||||
|
gb_pct=0.58, fb_pct=0.22, ld_pct=0.20,
|
||||||
|
hard_pct=0.34, med_pct=0.48, soft_pct=0.18,
|
||||||
|
pull_pct=0.38, center_pct=0.36, oppo_pct=0.26,
|
||||||
|
hr_per_hit=0.05, triple_per_hit=0.02, double_per_hit=0.22,
|
||||||
|
hr_fb_pct=0.08, ifh_pct=0.08,
|
||||||
|
starter_rating=5, relief_rating=6, closer_rating=None,
|
||||||
|
innings_per_start=6.0, pitch_efficiency=0.85
|
||||||
|
),
|
||||||
|
|
||||||
|
"dominant_closer": PitcherArchetype(
|
||||||
|
name="Dominant Closer",
|
||||||
|
description="Elite short relief, shuts down late innings, high strikeouts",
|
||||||
|
avg_vs_r=0.190, obp_vs_r=0.260, slg_vs_r=0.310,
|
||||||
|
bb_pct_vs_r=0.08, k_pct_vs_r=0.35,
|
||||||
|
avg_vs_l=0.205, obp_vs_l=0.275, slg_vs_l=0.335,
|
||||||
|
bb_pct_vs_l=0.08, k_pct_vs_l=0.32,
|
||||||
|
gb_pct=0.42, fb_pct=0.36, ld_pct=0.22,
|
||||||
|
hard_pct=0.36, med_pct=0.44, soft_pct=0.20,
|
||||||
|
pull_pct=0.40, center_pct=0.34, oppo_pct=0.26,
|
||||||
|
hr_per_hit=0.08, triple_per_hit=0.01, double_per_hit=0.22,
|
||||||
|
hr_fb_pct=0.10, ifh_pct=0.05,
|
||||||
|
starter_rating=2, relief_rating=9, closer_rating=9,
|
||||||
|
innings_per_start=0.0, pitch_efficiency=0.95
|
||||||
|
),
|
||||||
|
|
||||||
|
"setup_man": PitcherArchetype(
|
||||||
|
name="Setup Man",
|
||||||
|
description="Solid late-inning reliever, good strikeouts, sets up the closer",
|
||||||
|
avg_vs_r=0.220, obp_vs_r=0.290, slg_vs_r=0.360,
|
||||||
|
bb_pct_vs_r=0.09, k_pct_vs_r=0.28,
|
||||||
|
avg_vs_l=0.235, obp_vs_l=0.305, slg_vs_l=0.380,
|
||||||
|
bb_pct_vs_l=0.09, k_pct_vs_l=0.26,
|
||||||
|
gb_pct=0.44, fb_pct=0.34, ld_pct=0.22,
|
||||||
|
hard_pct=0.35, med_pct=0.44, soft_pct=0.21,
|
||||||
|
pull_pct=0.40, center_pct=0.35, oppo_pct=0.25,
|
||||||
|
hr_per_hit=0.10, triple_per_hit=0.02, double_per_hit=0.24,
|
||||||
|
hr_fb_pct=0.12, ifh_pct=0.06,
|
||||||
|
starter_rating=2, relief_rating=8, closer_rating=6,
|
||||||
|
innings_per_start=0.0, pitch_efficiency=0.90
|
||||||
|
),
|
||||||
|
|
||||||
|
"swingman": PitcherArchetype(
|
||||||
|
name="Swingman",
|
||||||
|
description="Can start or relieve, versatile, average stuff, eats innings",
|
||||||
|
avg_vs_r=0.255, obp_vs_r=0.315, slg_vs_r=0.400,
|
||||||
|
bb_pct_vs_r=0.08, k_pct_vs_r=0.19,
|
||||||
|
avg_vs_l=0.270, obp_vs_l=0.330, slg_vs_l=0.420,
|
||||||
|
bb_pct_vs_l=0.08, k_pct_vs_l=0.17,
|
||||||
|
gb_pct=0.44, fb_pct=0.34, ld_pct=0.22,
|
||||||
|
hard_pct=0.36, med_pct=0.44, soft_pct=0.20,
|
||||||
|
pull_pct=0.38, center_pct=0.36, oppo_pct=0.26,
|
||||||
|
hr_per_hit=0.10, triple_per_hit=0.02, double_per_hit=0.26,
|
||||||
|
hr_fb_pct=0.12, ifh_pct=0.07,
|
||||||
|
starter_rating=4, relief_rating=6, closer_rating=None,
|
||||||
|
innings_per_start=5.0, pitch_efficiency=0.82
|
||||||
|
),
|
||||||
|
|
||||||
|
"lefty_specialist": PitcherArchetype(
|
||||||
|
name="Lefty Specialist",
|
||||||
|
description="LOOGY type, dominates lefties, struggles vs righties, short outings",
|
||||||
|
avg_vs_r=0.270, obp_vs_r=0.340, slg_vs_r=0.430,
|
||||||
|
bb_pct_vs_r=0.10, k_pct_vs_r=0.22,
|
||||||
|
avg_vs_l=0.190, obp_vs_l=0.260, slg_vs_l=0.300,
|
||||||
|
bb_pct_vs_l=0.08, k_pct_vs_l=0.32,
|
||||||
|
gb_pct=0.48, fb_pct=0.30, ld_pct=0.22,
|
||||||
|
hard_pct=0.34, med_pct=0.46, soft_pct=0.20,
|
||||||
|
pull_pct=0.38, center_pct=0.36, oppo_pct=0.26,
|
||||||
|
hr_per_hit=0.09, triple_per_hit=0.02, double_per_hit=0.24,
|
||||||
|
hr_fb_pct=0.11, ifh_pct=0.06,
|
||||||
|
starter_rating=1, relief_rating=6, closer_rating=None,
|
||||||
|
innings_per_start=0.0, pitch_efficiency=0.88
|
||||||
|
),
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
def list_archetypes(player_type: Literal["batter", "pitcher"]) -> list[str]:
|
||||||
|
"""List available archetypes for a player type."""
|
||||||
|
if player_type == "batter":
|
||||||
|
return list(BATTER_ARCHETYPES.keys())
|
||||||
|
else:
|
||||||
|
return list(PITCHER_ARCHETYPES.keys())
|
||||||
|
|
||||||
|
|
||||||
|
def get_archetype(player_type: Literal["batter", "pitcher"], archetype_key: str) -> BatterArchetype | PitcherArchetype:
|
||||||
|
"""Get an archetype by key."""
|
||||||
|
if player_type == "batter":
|
||||||
|
if archetype_key not in BATTER_ARCHETYPES:
|
||||||
|
raise ValueError(f"Unknown batter archetype: {archetype_key}")
|
||||||
|
return BATTER_ARCHETYPES[archetype_key]
|
||||||
|
else:
|
||||||
|
if archetype_key not in PITCHER_ARCHETYPES:
|
||||||
|
raise ValueError(f"Unknown pitcher archetype: {archetype_key}")
|
||||||
|
return PITCHER_ARCHETYPES[archetype_key]
|
||||||
|
|
||||||
|
|
||||||
|
def describe_archetypes(player_type: Literal["batter", "pitcher"]) -> str:
|
||||||
|
"""Generate a formatted description of all archetypes."""
|
||||||
|
if player_type == "batter":
|
||||||
|
archetypes = BATTER_ARCHETYPES
|
||||||
|
else:
|
||||||
|
archetypes = PITCHER_ARCHETYPES
|
||||||
|
|
||||||
|
output = [f"\n{'='*60}", f"{player_type.upper()} ARCHETYPES", f"{'='*60}\n"]
|
||||||
|
|
||||||
|
for i, (key, arch) in enumerate(archetypes.items(), 1):
|
||||||
|
output.append(f"{i}. {arch.name} ({key})")
|
||||||
|
output.append(f" {arch.description}")
|
||||||
|
|
||||||
|
if player_type == "batter":
|
||||||
|
ops_vr = arch.obp_vs_r + arch.slg_vs_r
|
||||||
|
ops_vl = arch.obp_vs_l + arch.slg_vs_l
|
||||||
|
output.append(f" vs RHP: {arch.avg_vs_r:.3f}/{arch.obp_vs_r:.3f}/{arch.slg_vs_r:.3f} (OPS: {ops_vr:.3f})")
|
||||||
|
output.append(f" vs LHP: {arch.avg_vs_l:.3f}/{arch.obp_vs_l:.3f}/{arch.slg_vs_l:.3f} (OPS: {ops_vl:.3f})")
|
||||||
|
output.append(f" Speed: {arch.speed_rating}/10 | Positions: {', '.join(arch.primary_positions)}")
|
||||||
|
else:
|
||||||
|
ops_vr = arch.obp_vs_r + arch.slg_vs_r
|
||||||
|
ops_vl = arch.obp_vs_l + arch.slg_vs_l
|
||||||
|
output.append(f" vs RHB: {arch.avg_vs_r:.3f}/{arch.obp_vs_r:.3f}/{arch.slg_vs_r:.3f} (OPS: {ops_vr:.3f})")
|
||||||
|
output.append(f" vs LHB: {arch.avg_vs_l:.3f}/{arch.obp_vs_l:.3f}/{arch.slg_vs_l:.3f} (OPS: {ops_vl:.3f})")
|
||||||
|
if arch.closer_rating:
|
||||||
|
output.append(f" Role: Closer (SR:{arch.starter_rating} RR:{arch.relief_rating} CR:{arch.closer_rating})")
|
||||||
|
elif arch.starter_rating >= 4:
|
||||||
|
output.append(f" Role: Starter (SR:{arch.starter_rating} RR:{arch.relief_rating})")
|
||||||
|
else:
|
||||||
|
output.append(f" Role: Reliever (SR:{arch.starter_rating} RR:{arch.relief_rating})")
|
||||||
|
|
||||||
|
output.append("")
|
||||||
|
|
||||||
|
return "\n".join(output)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
# Demo the archetypes
|
||||||
|
print(describe_archetypes("batter"))
|
||||||
|
print(describe_archetypes("pitcher"))
|
||||||
646
custom_cards/interactive_creator.py
Normal file
646
custom_cards/interactive_creator.py
Normal file
@ -0,0 +1,646 @@
|
|||||||
|
"""
|
||||||
|
Interactive custom card creation workflow for Paper Dynasty.
|
||||||
|
|
||||||
|
This script guides users through creating fictional player cards using
|
||||||
|
baseball archetypes with iterative review and refinement.
|
||||||
|
"""
|
||||||
|
|
||||||
|
import asyncio
|
||||||
|
import sys
|
||||||
|
from typing import Dict, Any, Literal, Optional
|
||||||
|
from datetime import datetime
|
||||||
|
import boto3
|
||||||
|
import aiohttp
|
||||||
|
|
||||||
|
from custom_cards.archetype_definitions import (
|
||||||
|
BATTER_ARCHETYPES,
|
||||||
|
PITCHER_ARCHETYPES,
|
||||||
|
BatterArchetype,
|
||||||
|
PitcherArchetype,
|
||||||
|
describe_archetypes,
|
||||||
|
get_archetype,
|
||||||
|
)
|
||||||
|
from custom_cards.archetype_calculator import (
|
||||||
|
BatterRatingCalculator,
|
||||||
|
PitcherRatingCalculator,
|
||||||
|
calculate_total_ops,
|
||||||
|
)
|
||||||
|
from creation_helpers import (
|
||||||
|
get_all_pybaseball_ids,
|
||||||
|
sanitize_name,
|
||||||
|
CLUB_LIST,
|
||||||
|
mlbteam_and_franchise,
|
||||||
|
)
|
||||||
|
from db_calls import db_get, db_post, db_put, db_patch, url_get
|
||||||
|
from exceptions import logger
|
||||||
|
|
||||||
|
# AWS Configuration
|
||||||
|
AWS_BUCKET_NAME = 'paper-dynasty'
|
||||||
|
AWS_REGION = 'us-east-1'
|
||||||
|
S3_BASE_URL = f'https://{AWS_BUCKET_NAME}.s3.{AWS_REGION}.amazonaws.com'
|
||||||
|
|
||||||
|
|
||||||
|
class CustomCardCreator:
|
||||||
|
"""Interactive workflow for creating custom fictional player cards."""
|
||||||
|
|
||||||
|
def __init__(self):
|
||||||
|
"""Initialize the creator."""
|
||||||
|
self.cardset = None
|
||||||
|
self.season = None
|
||||||
|
self.player_description = None
|
||||||
|
self.s3_client = boto3.client('s3', region_name=AWS_REGION)
|
||||||
|
|
||||||
|
async def run(self):
|
||||||
|
"""Main workflow entry point."""
|
||||||
|
print("\n" + "="*70)
|
||||||
|
print("PAPER DYNASTY - CUSTOM CARD CREATOR")
|
||||||
|
print("="*70)
|
||||||
|
print("\nCreate fictional player cards using baseball archetypes.")
|
||||||
|
print("You'll define a player profile, review the calculated ratings,")
|
||||||
|
print("and iteratively tweak until satisfied.\n")
|
||||||
|
|
||||||
|
# Step 1: Setup cardset
|
||||||
|
await self.setup_cardset()
|
||||||
|
|
||||||
|
# Step 2: Create players loop
|
||||||
|
while True:
|
||||||
|
player_type = self.prompt_player_type()
|
||||||
|
if player_type == 'quit':
|
||||||
|
break
|
||||||
|
|
||||||
|
await self.create_player(player_type)
|
||||||
|
|
||||||
|
# Ask if they want to create another
|
||||||
|
another = input("\nCreate another custom player? (yes/no): ").strip().lower()
|
||||||
|
if another not in ['y', 'yes']:
|
||||||
|
break
|
||||||
|
|
||||||
|
print("\n" + "="*70)
|
||||||
|
print("Custom card creation complete!")
|
||||||
|
print("="*70 + "\n")
|
||||||
|
|
||||||
|
async def setup_cardset(self):
|
||||||
|
"""Setup the target cardset for custom cards."""
|
||||||
|
print("\n" + "-"*70)
|
||||||
|
print("CARDSET SETUP")
|
||||||
|
print("-"*70)
|
||||||
|
|
||||||
|
cardset_name = input("\nEnter cardset name (e.g., 'Custom Players 2025'): ").strip()
|
||||||
|
|
||||||
|
# Search for existing cardset
|
||||||
|
c_query = await db_get('cardsets', params=[('name', cardset_name)])
|
||||||
|
|
||||||
|
if c_query['count'] == 0:
|
||||||
|
# Cardset doesn't exist - ask if they want to create it
|
||||||
|
print(f"\nCardset '{cardset_name}' not found.")
|
||||||
|
create = input("Create new cardset? (yes/no): ").strip().lower()
|
||||||
|
|
||||||
|
if create not in ['y', 'yes']:
|
||||||
|
print("Cannot proceed without a cardset. Exiting.")
|
||||||
|
sys.exit(0)
|
||||||
|
|
||||||
|
# Get cardset details
|
||||||
|
season = int(input("Enter season year (e.g., 2025): ").strip())
|
||||||
|
ranked_legal = input("Ranked legal? (yes/no): ").strip().lower() in ['y', 'yes']
|
||||||
|
in_packs = input("Available in packs? (yes/no): ").strip().lower() in ['y', 'yes']
|
||||||
|
|
||||||
|
# Create cardset
|
||||||
|
cardset_payload = {
|
||||||
|
'name': cardset_name,
|
||||||
|
'season': season,
|
||||||
|
'ranked_legal': ranked_legal,
|
||||||
|
'in_packs': in_packs
|
||||||
|
}
|
||||||
|
new_cardset = await db_post('cardsets', payload=cardset_payload)
|
||||||
|
self.cardset = new_cardset
|
||||||
|
print(f"\nCreated new cardset: {cardset_name} (ID: {new_cardset['id']})")
|
||||||
|
else:
|
||||||
|
self.cardset = c_query['cardsets'][0]
|
||||||
|
print(f"\nUsing existing cardset: {cardset_name} (ID: {self.cardset['id']})")
|
||||||
|
|
||||||
|
# Set season and player description
|
||||||
|
self.season = self.cardset.get('season', datetime.now().year)
|
||||||
|
self.player_description = input(f"\nPlayer description (default: '{cardset_name}'): ").strip() or cardset_name
|
||||||
|
|
||||||
|
print(f"\nCardset ID: {self.cardset['id']}")
|
||||||
|
print(f"Season: {self.season}")
|
||||||
|
print(f"Player Description: {self.player_description}")
|
||||||
|
|
||||||
|
def prompt_player_type(self) -> Literal['batter', 'pitcher', 'quit']:
|
||||||
|
"""Prompt for player type."""
|
||||||
|
print("\n" + "-"*70)
|
||||||
|
print("PLAYER TYPE")
|
||||||
|
print("-"*70)
|
||||||
|
print("\n1. Batter")
|
||||||
|
print("2. Pitcher")
|
||||||
|
print("3. Quit")
|
||||||
|
|
||||||
|
while True:
|
||||||
|
choice = input("\nSelect player type (1-3): ").strip()
|
||||||
|
if choice == '1':
|
||||||
|
return 'batter'
|
||||||
|
elif choice == '2':
|
||||||
|
return 'pitcher'
|
||||||
|
elif choice == '3':
|
||||||
|
return 'quit'
|
||||||
|
else:
|
||||||
|
print("Invalid choice. Please enter 1, 2, or 3.")
|
||||||
|
|
||||||
|
async def create_player(self, player_type: Literal['batter', 'pitcher']):
|
||||||
|
"""Create a custom player of the specified type."""
|
||||||
|
print("\n" + "="*70)
|
||||||
|
print(f"CREATING CUSTOM {player_type.upper()}")
|
||||||
|
print("="*70)
|
||||||
|
|
||||||
|
# Step 1: Choose archetype
|
||||||
|
archetype = self.choose_archetype(player_type)
|
||||||
|
|
||||||
|
# Step 2: Get player info
|
||||||
|
player_info = self.get_player_info(player_type, archetype)
|
||||||
|
|
||||||
|
# Step 3: Calculate initial ratings
|
||||||
|
if player_type == 'batter':
|
||||||
|
calc = BatterRatingCalculator(archetype)
|
||||||
|
ratings = calc.calculate_ratings(battingcard_id=0) # Temp ID
|
||||||
|
baserunning = calc.calculate_baserunning()
|
||||||
|
card_data = {'ratings': ratings, 'baserunning': baserunning}
|
||||||
|
else:
|
||||||
|
calc = PitcherRatingCalculator(archetype)
|
||||||
|
ratings = calc.calculate_ratings(pitchingcard_id=0) # Temp ID
|
||||||
|
card_data = {'ratings': ratings}
|
||||||
|
|
||||||
|
# Step 4: Review and tweak loop
|
||||||
|
final_data = await self.review_and_tweak(player_type, player_info, archetype, card_data)
|
||||||
|
|
||||||
|
# Step 5: Create records in database
|
||||||
|
await self.create_database_records(player_type, player_info, final_data)
|
||||||
|
|
||||||
|
print(f"\n✓ {player_info['name_first']} {player_info['name_last']} created successfully!")
|
||||||
|
|
||||||
|
def choose_archetype(self, player_type: Literal['batter', 'pitcher']) -> BatterArchetype | PitcherArchetype:
|
||||||
|
"""Interactive archetype selection."""
|
||||||
|
print(describe_archetypes(player_type))
|
||||||
|
|
||||||
|
archetypes = BATTER_ARCHETYPES if player_type == 'batter' else PITCHER_ARCHETYPES
|
||||||
|
archetype_keys = list(archetypes.keys())
|
||||||
|
|
||||||
|
while True:
|
||||||
|
choice = input(f"\nSelect archetype (1-{len(archetype_keys)}): ").strip()
|
||||||
|
try:
|
||||||
|
idx = int(choice) - 1
|
||||||
|
if 0 <= idx < len(archetype_keys):
|
||||||
|
key = archetype_keys[idx]
|
||||||
|
return archetypes[key]
|
||||||
|
else:
|
||||||
|
print(f"Please enter a number between 1 and {len(archetype_keys)}.")
|
||||||
|
except ValueError:
|
||||||
|
print("Invalid input. Please enter a number.")
|
||||||
|
|
||||||
|
def get_player_info(self, player_type: Literal['batter', 'pitcher'], archetype: BatterArchetype | PitcherArchetype) -> dict:
|
||||||
|
"""Collect basic player information."""
|
||||||
|
print("\n" + "-"*70)
|
||||||
|
print("PLAYER INFORMATION")
|
||||||
|
print("-"*70)
|
||||||
|
|
||||||
|
name_first = input("\nFirst name: ").strip().title()
|
||||||
|
name_last = input("Last name: ").strip().title()
|
||||||
|
|
||||||
|
# Hand
|
||||||
|
if player_type == 'batter':
|
||||||
|
print("\nBatting hand:")
|
||||||
|
print("1. Right (R)")
|
||||||
|
print("2. Left (L)")
|
||||||
|
print("3. Switch (S)")
|
||||||
|
hand_choice = input("Select (1-3): ").strip()
|
||||||
|
hand = {'1': 'R', '2': 'L', '3': 'S'}.get(hand_choice, 'R')
|
||||||
|
else:
|
||||||
|
print("\nThrowing hand:")
|
||||||
|
print("1. Right (R)")
|
||||||
|
print("2. Left (L)")
|
||||||
|
hand_choice = input("Select (1-2): ").strip()
|
||||||
|
hand = {'1': 'R', '2': 'L'}.get(hand_choice, 'R')
|
||||||
|
|
||||||
|
# Team
|
||||||
|
print("\nMLB Team:")
|
||||||
|
for i, team in enumerate(sorted(CLUB_LIST.keys()), 1):
|
||||||
|
if i % 3 == 1:
|
||||||
|
print()
|
||||||
|
print(f"{i:2d}. {team:25s}", end="")
|
||||||
|
print("\n")
|
||||||
|
|
||||||
|
team_clubs = sorted(CLUB_LIST.keys())
|
||||||
|
while True:
|
||||||
|
team_choice = input(f"Select team (1-{len(team_clubs)}): ").strip()
|
||||||
|
try:
|
||||||
|
idx = int(team_choice) - 1
|
||||||
|
if 0 <= idx < len(team_clubs):
|
||||||
|
team_abbrev = team_clubs[idx]
|
||||||
|
break
|
||||||
|
else:
|
||||||
|
print(f"Please enter a number between 1 and {len(team_clubs)}.")
|
||||||
|
except ValueError:
|
||||||
|
print("Invalid input. Please enter a number.")
|
||||||
|
|
||||||
|
mlb_team_id, franchise_id = mlbteam_and_franchise(team_abbrev)
|
||||||
|
|
||||||
|
# Positions
|
||||||
|
if player_type == 'batter':
|
||||||
|
print("\nDefensive positions (primary first):")
|
||||||
|
print("Enter positions separated by spaces (e.g., 'CF RF DH')")
|
||||||
|
print("Available: C 1B 2B 3B SS LF CF RF DH")
|
||||||
|
positions_input = input("Positions: ").strip().upper().split()
|
||||||
|
positions = positions_input[:8] # Max 8 positions
|
||||||
|
else:
|
||||||
|
positions = ['P'] # Pitchers always have P
|
||||||
|
|
||||||
|
return {
|
||||||
|
'name_first': name_first,
|
||||||
|
'name_last': name_last,
|
||||||
|
'hand': hand,
|
||||||
|
'team_abbrev': team_abbrev,
|
||||||
|
'mlb_team_id': mlb_team_id,
|
||||||
|
'franchise_id': franchise_id,
|
||||||
|
'positions': positions,
|
||||||
|
}
|
||||||
|
|
||||||
|
async def review_and_tweak(
|
||||||
|
self,
|
||||||
|
player_type: Literal['batter', 'pitcher'],
|
||||||
|
player_info: dict,
|
||||||
|
archetype: BatterArchetype | PitcherArchetype,
|
||||||
|
card_data: dict
|
||||||
|
) -> dict:
|
||||||
|
"""Review calculated ratings and allow iterative tweaking."""
|
||||||
|
print("\n" + "="*70)
|
||||||
|
print("REVIEW & TWEAK RATINGS")
|
||||||
|
print("="*70)
|
||||||
|
|
||||||
|
while True:
|
||||||
|
# Display current ratings
|
||||||
|
self.display_ratings(player_type, player_info, card_data)
|
||||||
|
|
||||||
|
# Show options
|
||||||
|
print("\nOptions:")
|
||||||
|
print("1. Accept these ratings")
|
||||||
|
print("2. Tweak archetype percentages")
|
||||||
|
print("3. Manually adjust specific ratings")
|
||||||
|
print("4. Start over with different archetype")
|
||||||
|
|
||||||
|
choice = input("\nSelect (1-4): ").strip()
|
||||||
|
|
||||||
|
if choice == '1':
|
||||||
|
# Accept
|
||||||
|
return card_data
|
||||||
|
elif choice == '2':
|
||||||
|
# Tweak archetype
|
||||||
|
card_data = await self.tweak_archetype(player_type, archetype, card_data)
|
||||||
|
elif choice == '3':
|
||||||
|
# Manual adjustments
|
||||||
|
card_data = await self.manual_adjustments(player_type, card_data)
|
||||||
|
elif choice == '4':
|
||||||
|
# Start over
|
||||||
|
return await self.create_player(player_type)
|
||||||
|
else:
|
||||||
|
print("Invalid choice.")
|
||||||
|
|
||||||
|
def display_ratings(self, player_type: Literal['batter', 'pitcher'], player_info: dict, card_data: dict):
|
||||||
|
"""Display current calculated ratings in a readable format."""
|
||||||
|
name = f"{player_info['name_first']} {player_info['name_last']}"
|
||||||
|
print(f"\n{name} ({player_info['hand']}) - {player_info['team_abbrev']}")
|
||||||
|
print("-"*70)
|
||||||
|
|
||||||
|
ratings = card_data['ratings']
|
||||||
|
|
||||||
|
# Display vs L and vs R stats
|
||||||
|
for rating in ratings:
|
||||||
|
vs_hand = rating['vs_hand']
|
||||||
|
print(f"\nVS {vs_hand}{'HP' if player_type == 'batter' else 'HB'}:")
|
||||||
|
print(f" AVG: {rating['avg']:.3f} OBP: {rating['obp']:.3f} SLG: {rating['slg']:.3f} OPS: {rating['obp']+rating['slg']:.3f}")
|
||||||
|
|
||||||
|
# Show hit distribution
|
||||||
|
total_hits = (rating['homerun'] + rating['bp_homerun'] + rating['triple'] +
|
||||||
|
rating['double_three'] + rating['double_two'] + rating['double_pull'] +
|
||||||
|
rating['single_two'] + rating['single_one'] + rating['single_center'] + rating['bp_single'])
|
||||||
|
print(f" Hits: {total_hits:.1f} (HR: {rating['homerun']:.1f} 3B: {rating['triple']:.1f} 2B: {rating['double_pull']+rating['double_two']+rating['double_three']:.1f} 1B: {total_hits - rating['homerun'] - rating['bp_homerun'] - rating['triple'] - rating['double_pull'] - rating['double_two'] - rating['double_three']:.1f})")
|
||||||
|
|
||||||
|
# Show walk/strikeout
|
||||||
|
print(f" BB: {rating['walk']:.1f} HBP: {rating['hbp']:.1f} K: {rating['strikeout']:.1f}")
|
||||||
|
|
||||||
|
# Show batted ball distribution
|
||||||
|
outs = rating['lineout'] + rating['popout'] + (rating['flyout_a'] + rating['flyout_bq'] +
|
||||||
|
rating['flyout_lf_b'] + rating['flyout_rf_b']) + (rating['groundout_a'] +
|
||||||
|
rating['groundout_b'] + rating['groundout_c'])
|
||||||
|
print(f" Outs: {outs:.1f} (K: {rating['strikeout']:.1f} LD: {rating['lineout']:.1f} FB: {rating['flyout_a']+rating['flyout_bq']+rating['flyout_lf_b']+rating['flyout_rf_b']:.1f} GB: {rating['groundout_a']+rating['groundout_b']+rating['groundout_c']:.1f})")
|
||||||
|
|
||||||
|
# Calculate and display total OPS
|
||||||
|
is_pitcher = (player_type == 'pitcher')
|
||||||
|
total_ops = calculate_total_ops(ratings[0], ratings[1], is_pitcher)
|
||||||
|
print(f"\n{'Total OPS' if player_type == 'batter' else 'Total OPS Against'}: {total_ops:.3f}")
|
||||||
|
|
||||||
|
# Show baserunning for batters
|
||||||
|
if player_type == 'batter' and 'baserunning' in card_data:
|
||||||
|
br = card_data['baserunning']
|
||||||
|
print(f"\nBaserunning:")
|
||||||
|
print(f" Steal: {br['steal_low']}-{br['steal_high']} (Auto: {br['steal_auto']}, Jump: {br['steal_jump']})")
|
||||||
|
print(f" Running: {br['running']}/10 Hit-and-Run: {br['hit_and_run']}/10")
|
||||||
|
|
||||||
|
async def tweak_archetype(self, player_type: Literal['batter', 'pitcher'], archetype: BatterArchetype | PitcherArchetype, card_data: dict) -> dict:
|
||||||
|
"""Allow tweaking of archetype percentages."""
|
||||||
|
print("\n" + "-"*70)
|
||||||
|
print("TWEAK ARCHETYPE")
|
||||||
|
print("-"*70)
|
||||||
|
print("\nAdjust key percentages (press Enter to keep current value):\n")
|
||||||
|
|
||||||
|
# TODO: Implement percentage tweaking
|
||||||
|
# For now, return unchanged
|
||||||
|
print("(Feature coming soon - manual adjustments available in option 3)")
|
||||||
|
return card_data
|
||||||
|
|
||||||
|
async def manual_adjustments(self, player_type: Literal['batter', 'pitcher'], card_data: dict) -> dict:
|
||||||
|
"""Allow manual adjustment of specific D20 ratings."""
|
||||||
|
print("\n" + "-"*70)
|
||||||
|
print("MANUAL ADJUSTMENTS")
|
||||||
|
print("-"*70)
|
||||||
|
print("\nDirectly edit D20 chances (must sum to 108):\n")
|
||||||
|
|
||||||
|
# TODO: Implement manual adjustments
|
||||||
|
# For now, return unchanged
|
||||||
|
print("(Feature coming soon)")
|
||||||
|
return card_data
|
||||||
|
|
||||||
|
async def create_database_records(self, player_type: Literal['batter', 'pitcher'], player_info: dict, card_data: dict):
|
||||||
|
"""Create Player, Card, Ratings, and Position records in the database."""
|
||||||
|
print("\n" + "-"*70)
|
||||||
|
print("CREATING DATABASE RECORDS")
|
||||||
|
print("-"*70)
|
||||||
|
|
||||||
|
# Step 1: Create/verify MLBPlayer record
|
||||||
|
# For custom players, we use a fake bbref_id based on name
|
||||||
|
bbref_id = f"custom_{player_info['name_last'].lower()}{player_info['name_first'][0].lower()}01"
|
||||||
|
|
||||||
|
mlb_query = await db_get('mlbplayers', params=[('key_bbref', bbref_id)])
|
||||||
|
if mlb_query['count'] > 0:
|
||||||
|
mlbplayer_id = mlb_query['players'][0]['id']
|
||||||
|
print(f"✓ Using existing MLBPlayer record (ID: {mlbplayer_id})")
|
||||||
|
else:
|
||||||
|
mlbplayer_payload = {
|
||||||
|
'key_bbref': bbref_id,
|
||||||
|
'key_fangraphs': 0, # Custom player, no real ID
|
||||||
|
'key_mlbam': 0,
|
||||||
|
'key_retro': '',
|
||||||
|
'name_first': player_info['name_first'],
|
||||||
|
'name_last': player_info['name_last'],
|
||||||
|
'mlb_team_id': player_info['mlb_team_id'],
|
||||||
|
}
|
||||||
|
new_mlbplayer = await db_post('mlbplayers/one', payload=mlbplayer_payload)
|
||||||
|
mlbplayer_id = new_mlbplayer['id']
|
||||||
|
print(f"✓ Created MLBPlayer record (ID: {mlbplayer_id})")
|
||||||
|
|
||||||
|
# Step 2: Create Player record (with placeholder player_id for image URL)
|
||||||
|
# Note: We'll get the actual player_id after POST, then set the image URL
|
||||||
|
now = datetime.now()
|
||||||
|
release_date = f"{now.year}-{now.month}-{now.day}"
|
||||||
|
|
||||||
|
# We need to create player first, then PATCH with image URL
|
||||||
|
player_payload = {
|
||||||
|
'p_name': f"{player_info['name_first']} {player_info['name_last']}",
|
||||||
|
'bbref_id': bbref_id,
|
||||||
|
'fangraphs_id': 0,
|
||||||
|
'mlbam_id': 0,
|
||||||
|
'retrosheet_id': '',
|
||||||
|
'hand': player_info['hand'],
|
||||||
|
'mlb_team_id': player_info['mlb_team_id'],
|
||||||
|
'franchise_id': player_info['franchise_id'],
|
||||||
|
'cardset': self.cardset['id'],
|
||||||
|
'player_description': self.player_description,
|
||||||
|
'is_custom': True,
|
||||||
|
'mlbplayer_id': mlbplayer_id,
|
||||||
|
}
|
||||||
|
|
||||||
|
new_player = await db_post('players', payload=player_payload)
|
||||||
|
player_id = new_player['player_id']
|
||||||
|
print(f"✓ Created Player record (ID: {player_id})")
|
||||||
|
|
||||||
|
# Now add the image URL via PATCH
|
||||||
|
card_type = 'batting' if player_type == 'batter' else 'pitching'
|
||||||
|
image_url = f"https://pd.manticorum.com/api/v2/players/{player_id}/{card_type}card?d={release_date}"
|
||||||
|
await db_patch('players', object_id=player_id, params=[('image', image_url)])
|
||||||
|
print(f"✓ Updated Player with image URL")
|
||||||
|
|
||||||
|
# Step 3: Create Card and Ratings
|
||||||
|
if player_type == 'batter':
|
||||||
|
await self.create_batting_card(player_id, player_info, card_data)
|
||||||
|
else:
|
||||||
|
await self.create_pitching_card(player_id, player_info, card_data)
|
||||||
|
|
||||||
|
# Step 4: Create CardPosition records
|
||||||
|
await self.create_positions(player_id, player_info['positions'], card_data)
|
||||||
|
|
||||||
|
print(f"\n✓ All database records created for player ID {player_id}")
|
||||||
|
|
||||||
|
# Step 5: Generate card image and upload to S3
|
||||||
|
await self.image_generation_and_upload(player_id, player_type, release_date)
|
||||||
|
|
||||||
|
async def create_batting_card(self, player_id: int, player_info: dict, card_data: dict):
|
||||||
|
"""Create batting card and ratings."""
|
||||||
|
baserunning = card_data['baserunning']
|
||||||
|
|
||||||
|
# Create batting card
|
||||||
|
batting_card_payload = {
|
||||||
|
'cards': [{
|
||||||
|
'player_id': player_id,
|
||||||
|
'key_bbref': f"custom_{player_info['name_last'].lower()}{player_info['name_first'][0].lower()}01",
|
||||||
|
'key_fangraphs': 0,
|
||||||
|
'key_mlbam': 0,
|
||||||
|
'key_retro': '',
|
||||||
|
'name_first': player_info['name_first'],
|
||||||
|
'name_last': player_info['name_last'],
|
||||||
|
'steal_low': baserunning['steal_low'],
|
||||||
|
'steal_high': baserunning['steal_high'],
|
||||||
|
'steal_auto': baserunning['steal_auto'],
|
||||||
|
'steal_jump': baserunning['steal_jump'],
|
||||||
|
'hit_and_run': baserunning['hit_and_run'],
|
||||||
|
'running': baserunning['running'],
|
||||||
|
'hand': player_info['hand'],
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
|
||||||
|
card_resp = await db_put('battingcards', payload=batting_card_payload, timeout=10)
|
||||||
|
print(f"✓ Created batting card")
|
||||||
|
|
||||||
|
# Get the created card ID
|
||||||
|
bc_query = await db_get('battingcards', params=[('player_id', player_id)])
|
||||||
|
battingcard_id = bc_query['cards'][0]['id']
|
||||||
|
|
||||||
|
# Create ratings (update with real card ID)
|
||||||
|
ratings = card_data['ratings']
|
||||||
|
for rating in ratings:
|
||||||
|
rating['battingcard_id'] = battingcard_id
|
||||||
|
|
||||||
|
ratings_payload = {'ratings': ratings}
|
||||||
|
await db_put('battingcardratings', payload=ratings_payload, timeout=10)
|
||||||
|
print(f"✓ Created batting ratings")
|
||||||
|
|
||||||
|
async def create_pitching_card(self, player_id: int, player_info: dict, card_data: dict):
|
||||||
|
"""Create pitching card and ratings."""
|
||||||
|
# Determine starter/relief/closer ratings based on archetype
|
||||||
|
# For now, use defaults - can be enhanced later
|
||||||
|
pitching_card_payload = {
|
||||||
|
'cards': [{
|
||||||
|
'player_id': player_id,
|
||||||
|
'key_bbref': f"custom_{player_info['name_last'].lower()}{player_info['name_first'][0].lower()}01",
|
||||||
|
'key_fangraphs': 0,
|
||||||
|
'key_mlbam': 0,
|
||||||
|
'key_retro': '',
|
||||||
|
'name_first': player_info['name_first'],
|
||||||
|
'name_last': player_info['name_last'],
|
||||||
|
'hand': player_info['hand'],
|
||||||
|
'starter_rating': 5, # TODO: Get from archetype
|
||||||
|
'relief_rating': 5, # TODO: Get from archetype
|
||||||
|
'closer_rating': None, # TODO: Get from archetype
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
|
||||||
|
card_resp = await db_put('pitchingcards', payload=pitching_card_payload, timeout=10)
|
||||||
|
print(f"✓ Created pitching card")
|
||||||
|
|
||||||
|
# Get the created card ID
|
||||||
|
pc_query = await db_get('pitchingcards', params=[('player_id', player_id)])
|
||||||
|
pitchingcard_id = pc_query['cards'][0]['id']
|
||||||
|
|
||||||
|
# Create ratings (update with real card ID)
|
||||||
|
ratings = card_data['ratings']
|
||||||
|
for rating in ratings:
|
||||||
|
rating['pitchingcard_id'] = pitchingcard_id
|
||||||
|
|
||||||
|
ratings_payload = {'ratings': ratings}
|
||||||
|
await db_put('pitchingcardratings', payload=ratings_payload, timeout=10)
|
||||||
|
print(f"✓ Created pitching ratings")
|
||||||
|
|
||||||
|
async def create_positions(self, player_id: int, positions: list[str], card_data: dict):
|
||||||
|
"""Create CardPosition records."""
|
||||||
|
positions_payload = {
|
||||||
|
'positions': [
|
||||||
|
{
|
||||||
|
'player_id': player_id,
|
||||||
|
'position': pos
|
||||||
|
}
|
||||||
|
for pos in positions
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
await db_post('cardpositions', payload=positions_payload)
|
||||||
|
print(f"✓ Created {len(positions)} position record(s)")
|
||||||
|
|
||||||
|
async def image_generation_and_upload(self, player_id: int, player_type: Literal['batter', 'pitcher'], release_date: str):
|
||||||
|
"""
|
||||||
|
Generate card image from API and upload to S3.
|
||||||
|
|
||||||
|
This implements the 4-step workflow:
|
||||||
|
1. GET Player.image to trigger card generation
|
||||||
|
2. Fetch the generated PNG image bytes
|
||||||
|
3. Upload to S3 with proper metadata
|
||||||
|
4. PATCH player record with S3 URL
|
||||||
|
"""
|
||||||
|
print("\n" + "-"*70)
|
||||||
|
print("GENERATING & UPLOADING CARD IMAGE")
|
||||||
|
print("-"*70)
|
||||||
|
|
||||||
|
card_type = 'batting' if player_type == 'batter' else 'pitching'
|
||||||
|
api_image_url = f"https://pd.manticorum.com/api/v2/players/{player_id}/{card_type}card?d={release_date}"
|
||||||
|
|
||||||
|
try:
|
||||||
|
# Step 1 & 2: Trigger card generation and fetch image bytes
|
||||||
|
async with aiohttp.ClientSession() as session:
|
||||||
|
async with session.get(api_image_url, timeout=aiohttp.ClientTimeout(total=10)) as resp:
|
||||||
|
if resp.status == 200:
|
||||||
|
image_bytes = await resp.read()
|
||||||
|
image_size_kb = len(image_bytes) / 1024
|
||||||
|
print(f"✓ Triggered card generation at API")
|
||||||
|
print(f"✓ Fetched card image ({image_size_kb:.1f} KB)")
|
||||||
|
logger.info(f"Fetched {card_type} card for player {player_id}: {image_size_kb:.1f} KB")
|
||||||
|
else:
|
||||||
|
error_text = await resp.text()
|
||||||
|
raise ValueError(f"Card generation failed (HTTP {resp.status}): {error_text}")
|
||||||
|
|
||||||
|
# Step 3: Upload to S3
|
||||||
|
s3_url = self.upload_card_to_s3(
|
||||||
|
image_bytes,
|
||||||
|
player_id,
|
||||||
|
card_type,
|
||||||
|
release_date,
|
||||||
|
self.cardset['id']
|
||||||
|
)
|
||||||
|
print(f"✓ Uploaded to S3: cards/cardset-{self.cardset['id']:03d}/player-{player_id}/{card_type}card.png")
|
||||||
|
|
||||||
|
# Step 4: Update player record with S3 URL
|
||||||
|
await db_patch('players', object_id=player_id, params=[('image', s3_url)])
|
||||||
|
print(f"✓ Updated player record with S3 URL")
|
||||||
|
logger.info(f"Updated player {player_id} with S3 URL: {s3_url}")
|
||||||
|
|
||||||
|
except aiohttp.ClientError as e:
|
||||||
|
error_msg = f"Network error during card generation: {e}"
|
||||||
|
logger.error(error_msg)
|
||||||
|
print(f"\n⚠ WARNING: {error_msg}")
|
||||||
|
print(f" Player created but card image not uploaded to S3.")
|
||||||
|
print(f" Manual upload may be needed later.")
|
||||||
|
|
||||||
|
except ValueError as e:
|
||||||
|
error_msg = f"Card generation error: {e}"
|
||||||
|
logger.error(error_msg)
|
||||||
|
print(f"\n⚠ WARNING: {error_msg}")
|
||||||
|
print(f" Player created but card image not uploaded to S3.")
|
||||||
|
print(f" Check player record and card data.")
|
||||||
|
|
||||||
|
except Exception as e:
|
||||||
|
error_msg = f"S3 upload error: {e}"
|
||||||
|
logger.error(error_msg)
|
||||||
|
print(f"\n⚠ WARNING: {error_msg}")
|
||||||
|
print(f" Card generated but S3 upload failed.")
|
||||||
|
print(f" Player still has API image URL.")
|
||||||
|
|
||||||
|
def upload_card_to_s3(self, image_data: bytes, player_id: int, card_type: str, release_date: str, cardset_id: int) -> str:
|
||||||
|
"""
|
||||||
|
Upload card image to S3 and return the S3 URL with cache-busting param.
|
||||||
|
|
||||||
|
Args:
|
||||||
|
image_data: Raw PNG image bytes
|
||||||
|
player_id: Player ID
|
||||||
|
card_type: 'batting' or 'pitching'
|
||||||
|
release_date: Date string for cache busting (e.g., '2025-11-11')
|
||||||
|
cardset_id: Cardset ID (will be zero-padded to 3 digits)
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
Full S3 URL with ?d= parameter
|
||||||
|
"""
|
||||||
|
# Format cardset_id with 3 digits and leading zeros
|
||||||
|
cardset_str = f'{cardset_id:03d}'
|
||||||
|
s3_key = f'cards/cardset-{cardset_str}/player-{player_id}/{card_type}card.png'
|
||||||
|
|
||||||
|
self.s3_client.put_object(
|
||||||
|
Bucket=AWS_BUCKET_NAME,
|
||||||
|
Key=s3_key,
|
||||||
|
Body=image_data,
|
||||||
|
ContentType='image/png',
|
||||||
|
CacheControl='public, max-age=300', # 5 minute cache
|
||||||
|
Metadata={
|
||||||
|
'player-id': str(player_id),
|
||||||
|
'card-type': card_type,
|
||||||
|
'upload-date': datetime.now().isoformat()
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
# Return URL with cache-busting parameter
|
||||||
|
s3_url = f'{S3_BASE_URL}/{s3_key}?d={release_date}'
|
||||||
|
logger.info(f'Uploaded {card_type} card for player {player_id} to S3: {s3_url}')
|
||||||
|
return s3_url
|
||||||
|
|
||||||
|
|
||||||
|
async def main():
|
||||||
|
"""Entry point."""
|
||||||
|
creator = CustomCardCreator()
|
||||||
|
await creator.run()
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
asyncio.run(main())
|
||||||
117
custom_cards/will_baserunning_strat.py
Normal file
117
custom_cards/will_baserunning_strat.py
Normal file
@ -0,0 +1,117 @@
|
|||||||
|
"""
|
||||||
|
Calculate proper Stratomatic baserunning ratings for Will the Thrill.
|
||||||
|
"""
|
||||||
|
|
||||||
|
# Will the Thrill profile:
|
||||||
|
# - Above average speed (not elite, but good)
|
||||||
|
# - Good contact hitter (high BABIP)
|
||||||
|
# - Takes extra bases well
|
||||||
|
# - Not a huge stolen base threat but capable
|
||||||
|
|
||||||
|
# STEALING RATINGS
|
||||||
|
# Based on profile: decent speed, not aggressive basestealer
|
||||||
|
# Assume ~15 SB / ~5 CS per season (75% success rate)
|
||||||
|
# That's moderate attempt rate, decent success
|
||||||
|
|
||||||
|
steal_low = 7 # Decent success floor (0-20 scale)
|
||||||
|
steal_high = 11 # Good success ceiling (0-20 scale)
|
||||||
|
steal_auto = False # Not aggressive enough for auto-attempts
|
||||||
|
steal_jump = 0.33 # 12 out of 36 chances for good jump (converts to "4-6")
|
||||||
|
|
||||||
|
print("="*70)
|
||||||
|
print("WILL THE THRILL - CORRECTED STRATOMATIC BASERUNNING")
|
||||||
|
print("="*70)
|
||||||
|
print()
|
||||||
|
print("STEALING:")
|
||||||
|
print(f" steal_low: {steal_low}")
|
||||||
|
print(f" steal_high: {steal_high}")
|
||||||
|
print(f" steal_auto: {steal_auto}")
|
||||||
|
print(f" steal_jump: {steal_jump} (converts to Strat notation)")
|
||||||
|
print()
|
||||||
|
print(" Interpretation:")
|
||||||
|
print(f" - Success range: {steal_low}-{steal_high} on 2d10")
|
||||||
|
print(f" - Auto-attempt: {'Yes' if steal_auto else 'No'}")
|
||||||
|
print(f" - Good jump: {int(steal_jump * 36)}/36 chances")
|
||||||
|
print()
|
||||||
|
|
||||||
|
# HIT-AND-RUN RATING
|
||||||
|
# Based on BABIP calculation from stats
|
||||||
|
# High contact, low strikeouts = good hit-and-run
|
||||||
|
# AVG .285-.300, low K rate = high BABIP
|
||||||
|
|
||||||
|
# Calculate BABIP for Will
|
||||||
|
# From preview: 37 hits, ~1.5 HR, ~14 K per 108 chances
|
||||||
|
# BABIP = (H - HR) / (AB - K - HR)
|
||||||
|
# AB ≈ 90 (108 - 18 BB/HBP)
|
||||||
|
# BABIP ≈ (37 - 1.5) / (90 - 14 - 1.5) ≈ 35.5 / 74.5 ≈ 0.476 (very high!)
|
||||||
|
|
||||||
|
babip = 0.476
|
||||||
|
if babip >= 0.35:
|
||||||
|
hit_run = 'A'
|
||||||
|
elif babip >= 0.30:
|
||||||
|
hit_run = 'B'
|
||||||
|
elif babip >= 0.25:
|
||||||
|
hit_run = 'C'
|
||||||
|
else:
|
||||||
|
hit_run = 'D'
|
||||||
|
|
||||||
|
print("HIT-AND-RUN:")
|
||||||
|
print(f" Rating: {hit_run}")
|
||||||
|
print(f" BABIP: {babip:.3f}")
|
||||||
|
print(f" (Grade A = .350+, B = .300-.349, C = .250-.299, D = <.250)")
|
||||||
|
print()
|
||||||
|
|
||||||
|
# RUNNING RATING
|
||||||
|
# Based on extra base taken percentage
|
||||||
|
# Formula: max(min(round(6 + (10 * (XBT% / 80))), 17), 8)
|
||||||
|
# Good baserunner, takes extra bases well
|
||||||
|
|
||||||
|
xbt_pct = 52.0 # 52% extra base taken (from archetype)
|
||||||
|
running = max(min(round(6 + (10 * (xbt_pct / 80))), 17), 8)
|
||||||
|
|
||||||
|
print("RUNNING:")
|
||||||
|
print(f" Rating: {running}")
|
||||||
|
print(f" XBT%: {xbt_pct}%")
|
||||||
|
print(f" (Scale: 8-17, where 8=slow, 12=average, 17=elite)")
|
||||||
|
print()
|
||||||
|
|
||||||
|
print("="*70)
|
||||||
|
print("SUMMARY - CORRECT STRATOMATIC FORMAT")
|
||||||
|
print("="*70)
|
||||||
|
print()
|
||||||
|
print("Batting Card Fields:")
|
||||||
|
print(f" steal_low: {steal_low}")
|
||||||
|
print(f" steal_high: {steal_high}")
|
||||||
|
print(f" steal_auto: {1 if steal_auto else 0} (stored as integer in DB)")
|
||||||
|
print(f" steal_jump: {steal_jump}")
|
||||||
|
print(f" hit_and_run: '{hit_run}'")
|
||||||
|
print(f" running: {running}")
|
||||||
|
print()
|
||||||
|
print("Database payload:")
|
||||||
|
print("{")
|
||||||
|
print(f" 'steal_low': {steal_low},")
|
||||||
|
print(f" 'steal_high': {steal_high},")
|
||||||
|
print(f" 'steal_auto': {1 if steal_auto else 0},")
|
||||||
|
print(f" 'steal_jump': {steal_jump},")
|
||||||
|
print(f" 'hit_and_run': '{hit_run}',")
|
||||||
|
print(f" 'running': {running}")
|
||||||
|
print("}")
|
||||||
|
print()
|
||||||
|
print("="*70)
|
||||||
|
|
||||||
|
# Show comparison to what I generated before
|
||||||
|
print()
|
||||||
|
print("COMPARISON:")
|
||||||
|
print("-"*70)
|
||||||
|
print("WRONG (my previous output):")
|
||||||
|
print(" Steal Range: 6-7")
|
||||||
|
print(" Jump: 6/10")
|
||||||
|
print(" Running: 6/10")
|
||||||
|
print(" Hit-and-Run: 8/10")
|
||||||
|
print()
|
||||||
|
print("CORRECT (Stratomatic format):")
|
||||||
|
print(f" Steal Range: {steal_low}-{steal_high}")
|
||||||
|
print(f" Jump: {steal_jump} (out of 1.0)")
|
||||||
|
print(f" Running: {running} (out of 17)")
|
||||||
|
print(f" Hit-and-Run: {hit_run} (letter grade)")
|
||||||
|
print("="*70)
|
||||||
365
custom_cards/will_the_thrill_preview.py
Normal file
365
custom_cards/will_the_thrill_preview.py
Normal file
@ -0,0 +1,365 @@
|
|||||||
|
"""
|
||||||
|
Preview ratings for "Will the Thrill" custom player.
|
||||||
|
Target: 0.825 total OPS, lots of singles, few XBH, low HR, slightly more power vs L
|
||||||
|
"""
|
||||||
|
|
||||||
|
from custom_cards.archetype_definitions import BatterArchetype
|
||||||
|
from custom_cards.archetype_calculator import BatterRatingCalculator, calculate_total_ops
|
||||||
|
|
||||||
|
# Create custom archetype for Will the Thrill
|
||||||
|
# Target total OPS = 0.825 with formula: (OPS_vR + OPS_vL + min) / 3
|
||||||
|
# Working backwards: 0.825 * 3 = 2.475
|
||||||
|
# If OPS_vL = 0.865 and OPS_vR = 0.805, then min = 0.805
|
||||||
|
# 0.865 + 0.805 + 0.805 = 2.475 ✓
|
||||||
|
|
||||||
|
will_the_thrill = BatterArchetype(
|
||||||
|
name="Will the Thrill",
|
||||||
|
description="High contact singles hitter with gap power, slightly more pop vs LHP",
|
||||||
|
|
||||||
|
# VS RHP: Target OPS = 0.805
|
||||||
|
# High contact, lots of singles, some doubles, few HR
|
||||||
|
avg_vs_r=0.285, # Good average
|
||||||
|
obp_vs_r=0.345, # Decent OBP (AVG + some walks)
|
||||||
|
slg_vs_r=0.460, # Modest slugging (singles-heavy)
|
||||||
|
bb_pct_vs_r=0.07, # Low-moderate walks
|
||||||
|
k_pct_vs_r=0.15, # Good contact (low K)
|
||||||
|
|
||||||
|
# VS LHP: Target OPS = 0.865 (slightly more power)
|
||||||
|
# Better power vs lefties, more doubles/HR
|
||||||
|
avg_vs_l=0.300, # Better average vs L
|
||||||
|
obp_vs_l=0.360, # Better OBP
|
||||||
|
slg_vs_l=0.505, # More power vs L
|
||||||
|
bb_pct_vs_l=0.07, # Similar walks
|
||||||
|
k_pct_vs_l=0.14, # Slightly less K vs L
|
||||||
|
|
||||||
|
# Power distribution - LOW HR, few XBH, LOTS of singles
|
||||||
|
hr_per_hit=0.04, # Very low HR rate (4% of hits)
|
||||||
|
triple_per_hit=0.02, # Few triples
|
||||||
|
double_per_hit=0.22, # Moderate doubles (gap power)
|
||||||
|
# Singles = 72% of hits
|
||||||
|
|
||||||
|
# Batted ball profile - contact-oriented
|
||||||
|
gb_pct=0.45, # Moderate ground balls
|
||||||
|
fb_pct=0.30, # Lower fly balls (less power)
|
||||||
|
ld_pct=0.25, # Good line drive rate
|
||||||
|
|
||||||
|
# Batted ball quality - contact over power
|
||||||
|
hard_pct=0.33, # Moderate hard contact
|
||||||
|
med_pct=0.50, # Lots of medium contact
|
||||||
|
soft_pct=0.17, # Some soft contact
|
||||||
|
|
||||||
|
# Spray chart - all fields
|
||||||
|
pull_pct=0.38, # Some pull
|
||||||
|
center_pct=0.36, # Good center %
|
||||||
|
oppo_pct=0.26, # Uses whole field
|
||||||
|
|
||||||
|
# Infield hits
|
||||||
|
ifh_pct=0.08, # Decent speed for infield hits
|
||||||
|
|
||||||
|
# Specific power metrics
|
||||||
|
hr_fb_pct=0.08, # Low HR/FB (not a power hitter)
|
||||||
|
|
||||||
|
# Baserunning - decent speed
|
||||||
|
speed_rating=6, # Above average speed
|
||||||
|
steal_jump=6, # Good reads
|
||||||
|
xbt_pct=0.52, # Takes extra bases
|
||||||
|
|
||||||
|
# Situational hitting
|
||||||
|
hit_run_skill=8, # Good contact = good hit-and-run
|
||||||
|
|
||||||
|
# Defensive profile
|
||||||
|
primary_positions=["LF", "2B"],
|
||||||
|
defensive_rating=6, # Above average defender
|
||||||
|
)
|
||||||
|
|
||||||
|
# Calculate ratings
|
||||||
|
calc = BatterRatingCalculator(will_the_thrill)
|
||||||
|
ratings = calc.calculate_ratings(battingcard_id=0) # Temp ID
|
||||||
|
baserunning = calc.calculate_baserunning()
|
||||||
|
|
||||||
|
# Manual correction: Hit-and-Run should be 'A' based on actual BABIP of .428
|
||||||
|
# (High contact, low K, low HR = very high BABIP)
|
||||||
|
baserunning['hit_and_run'] = 'A'
|
||||||
|
|
||||||
|
# Manual correction: Remove triples from vs RHP (only keep vs LHP)
|
||||||
|
ratings[1]['triple'] = 0.0 # ratings[1] is vs RHP
|
||||||
|
# Redistribute the triple chances to singles
|
||||||
|
ratings[1]['single_center'] += 0.75
|
||||||
|
|
||||||
|
# Adjust flyball distribution
|
||||||
|
# FlyA is rare - defaults to 0.0, only 1.0 for power hitters
|
||||||
|
# Will is NOT a power hitter, so flyA = 0.0
|
||||||
|
|
||||||
|
# VS RHP (ratings[1]): More flyballs to RF, flyA = 0
|
||||||
|
ratings[1]['flyout_a'] = 0.0 # Only for power hitters
|
||||||
|
ratings[1]['flyout_bq'] = 5.75 # Increase to absorb flyA
|
||||||
|
ratings[1]['flyout_lf_b'] = 4.00 # Lower - NOT the emphasis
|
||||||
|
ratings[1]['flyout_rf_b'] = 4.55 # HIGHER - more to RF as requested
|
||||||
|
|
||||||
|
# VS LHP (ratings[0]): More flyballs to LF, flyA = 0
|
||||||
|
ratings[0]['flyout_a'] = 0.0 # Only for power hitters
|
||||||
|
ratings[0]['flyout_bq'] = 5.55 # Increase to absorb flyA
|
||||||
|
ratings[0]['flyout_lf_b'] = 4.55 # HIGHER - more to LF as requested
|
||||||
|
ratings[0]['flyout_rf_b'] = 4.00 # Lower - NOT the emphasis
|
||||||
|
|
||||||
|
# VS RHP: Slightly more strikeouts (take from lineouts)
|
||||||
|
ratings[1]['strikeout'] = 15.50 # Increase from 14.40
|
||||||
|
ratings[1]['lineout'] = 10.80 # Decrease from 11.90 to balance
|
||||||
|
|
||||||
|
# Adjust groundball ratio to 3:2:1.5 (gbA:gbB:gbC)
|
||||||
|
# VS RHP: Total groundouts = 21.40
|
||||||
|
ratings[1]['groundout_a'] = 9.85 # 3 parts
|
||||||
|
ratings[1]['groundout_b'] = 6.60 # 2 parts
|
||||||
|
ratings[1]['groundout_c'] = 4.95 # 1.5 parts
|
||||||
|
|
||||||
|
# VS LHP: Total groundouts = 21.15
|
||||||
|
ratings[0]['groundout_a'] = 9.75 # 3 parts
|
||||||
|
ratings[0]['groundout_b'] = 6.50 # 2 parts
|
||||||
|
ratings[0]['groundout_c'] = 4.90 # 1.5 parts
|
||||||
|
|
||||||
|
# Add light randomization to make the card less homogenous
|
||||||
|
# Small variations (+/- 0.25 to 0.75) to make it feel more natural
|
||||||
|
import random
|
||||||
|
random.seed(42) # Consistent randomization for Will the Thrill
|
||||||
|
|
||||||
|
def round_to_05(value):
|
||||||
|
"""Round to nearest 0.05 (Stratomatic standard)."""
|
||||||
|
return round(value * 20) / 20
|
||||||
|
|
||||||
|
def add_variation(base_value, max_variation=0.5):
|
||||||
|
"""Add small random variation to a value, then round to 0.05."""
|
||||||
|
if base_value == 0.0:
|
||||||
|
return 0.0 # Don't randomize zeros
|
||||||
|
variation = random.uniform(-max_variation, max_variation)
|
||||||
|
result = max(0.0, base_value + variation)
|
||||||
|
return round_to_05(result)
|
||||||
|
|
||||||
|
# Randomize singles distribution (keeping BP-SI fixed)
|
||||||
|
ratings[0]['single_two'] = add_variation(ratings[0]['single_two'], 0.75)
|
||||||
|
ratings[0]['single_one'] = add_variation(ratings[0]['single_one'], 0.50)
|
||||||
|
ratings[0]['single_center'] = add_variation(ratings[0]['single_center'], 0.60)
|
||||||
|
|
||||||
|
ratings[1]['single_two'] = add_variation(ratings[1]['single_two'], 0.60)
|
||||||
|
ratings[1]['single_one'] = add_variation(ratings[1]['single_one'], 0.75)
|
||||||
|
ratings[1]['single_center'] = add_variation(ratings[1]['single_center'], 0.50)
|
||||||
|
|
||||||
|
# Randomize doubles (keeping total roughly similar)
|
||||||
|
ratings[0]['double_two'] = add_variation(ratings[0]['double_two'], 0.40)
|
||||||
|
ratings[0]['double_pull'] = add_variation(ratings[0]['double_pull'], 0.35)
|
||||||
|
|
||||||
|
ratings[1]['double_two'] = add_variation(ratings[1]['double_two'], 0.35)
|
||||||
|
ratings[1]['double_pull'] = add_variation(ratings[1]['double_pull'], 0.40)
|
||||||
|
|
||||||
|
# Randomize flyouts slightly
|
||||||
|
ratings[0]['flyout_bq'] = add_variation(ratings[0]['flyout_bq'], 0.45)
|
||||||
|
ratings[0]['flyout_lf_b'] = add_variation(ratings[0]['flyout_lf_b'], 0.30)
|
||||||
|
ratings[0]['flyout_rf_b'] = add_variation(ratings[0]['flyout_rf_b'], 0.30)
|
||||||
|
|
||||||
|
ratings[1]['flyout_bq'] = add_variation(ratings[1]['flyout_bq'], 0.40)
|
||||||
|
ratings[1]['flyout_lf_b'] = add_variation(ratings[1]['flyout_lf_b'], 0.35)
|
||||||
|
ratings[1]['flyout_rf_b'] = add_variation(ratings[1]['flyout_rf_b'], 0.35)
|
||||||
|
|
||||||
|
# Randomize groundouts slightly
|
||||||
|
ratings[0]['groundout_a'] = add_variation(ratings[0]['groundout_a'], 0.50)
|
||||||
|
ratings[0]['groundout_b'] = add_variation(ratings[0]['groundout_b'], 0.40)
|
||||||
|
ratings[0]['groundout_c'] = add_variation(ratings[0]['groundout_c'], 0.35)
|
||||||
|
|
||||||
|
ratings[1]['groundout_a'] = add_variation(ratings[1]['groundout_a'], 0.45)
|
||||||
|
ratings[1]['groundout_b'] = add_variation(ratings[1]['groundout_b'], 0.50)
|
||||||
|
ratings[1]['groundout_c'] = add_variation(ratings[1]['groundout_c'], 0.40)
|
||||||
|
|
||||||
|
# Small variation on lineouts
|
||||||
|
ratings[0]['lineout'] = add_variation(ratings[0]['lineout'], 0.40)
|
||||||
|
ratings[1]['lineout'] = add_variation(ratings[1]['lineout'], 0.45)
|
||||||
|
|
||||||
|
# Rebalance each split to exactly 108.00
|
||||||
|
def rebalance_to_108(rating_dict):
|
||||||
|
"""Adjust to ensure total = 108.00 by tweaking single_center (most common result)."""
|
||||||
|
current_total = sum([
|
||||||
|
rating_dict['homerun'], rating_dict['bp_homerun'], rating_dict['triple'],
|
||||||
|
rating_dict['double_three'], rating_dict['double_two'], rating_dict['double_pull'],
|
||||||
|
rating_dict['single_two'], rating_dict['single_one'], rating_dict['single_center'],
|
||||||
|
rating_dict['bp_single'], rating_dict['walk'], rating_dict['hbp'],
|
||||||
|
rating_dict['strikeout'], rating_dict['lineout'], rating_dict['popout'],
|
||||||
|
rating_dict['flyout_a'], rating_dict['flyout_bq'], rating_dict['flyout_lf_b'],
|
||||||
|
rating_dict['flyout_rf_b'], rating_dict['groundout_a'], rating_dict['groundout_b'],
|
||||||
|
rating_dict['groundout_c']
|
||||||
|
])
|
||||||
|
diff = 108.0 - current_total
|
||||||
|
rating_dict['single_center'] = round_to_05(rating_dict['single_center'] + diff)
|
||||||
|
return rating_dict
|
||||||
|
|
||||||
|
ratings[0] = rebalance_to_108(ratings[0])
|
||||||
|
ratings[1] = rebalance_to_108(ratings[1])
|
||||||
|
|
||||||
|
# Display results
|
||||||
|
print("="*70)
|
||||||
|
print("WILL THE THRILL - CUSTOM PLAYER PREVIEW")
|
||||||
|
print("="*70)
|
||||||
|
print()
|
||||||
|
print("Player Info:")
|
||||||
|
print(" Name: Will the Thrill")
|
||||||
|
print(" Hand: R (Right-handed batter)")
|
||||||
|
print(" Primary Position: LF")
|
||||||
|
print(" Secondary Position: 2B")
|
||||||
|
print()
|
||||||
|
|
||||||
|
# Show defensive ratings (will need to be manually created)
|
||||||
|
print("Defensive Ratings (to be set manually):")
|
||||||
|
print(" LF: Range 3 / Error 7 / Arm +2")
|
||||||
|
print(" 2B: Range 4 / Error 12 / Arm (default)")
|
||||||
|
print()
|
||||||
|
|
||||||
|
print("-"*70)
|
||||||
|
print("CALCULATED BATTING RATINGS")
|
||||||
|
print("-"*70)
|
||||||
|
|
||||||
|
for rating in ratings:
|
||||||
|
vs_hand = rating['vs_hand']
|
||||||
|
print(f"\nVS {vs_hand}HP:")
|
||||||
|
print(f" AVG: {rating['avg']:.3f} OBP: {rating['obp']:.3f} SLG: {rating['slg']:.3f} OPS: {rating['obp']+rating['slg']:.3f}")
|
||||||
|
|
||||||
|
# Hit breakdown
|
||||||
|
total_hits = (rating['homerun'] + rating['bp_homerun'] + rating['triple'] +
|
||||||
|
rating['double_three'] + rating['double_two'] + rating['double_pull'] +
|
||||||
|
rating['single_two'] + rating['single_one'] + rating['single_center'] + rating['bp_single'])
|
||||||
|
total_doubles = rating['double_pull'] + rating['double_two'] + rating['double_three']
|
||||||
|
total_singles = (rating['single_two'] + rating['single_one'] +
|
||||||
|
rating['single_center'] + rating['bp_single'])
|
||||||
|
|
||||||
|
print(f"\n Hit Distribution (out of {total_hits:.1f} total hits):")
|
||||||
|
print(f" Singles: {total_singles:.1f} ({100*total_singles/total_hits:.1f}%)")
|
||||||
|
print(f" Doubles: {total_doubles:.1f} ({100*total_doubles/total_hits:.1f}%)")
|
||||||
|
print(f" Triples: {rating['triple']:.1f} ({100*rating['triple']/total_hits:.1f}%)")
|
||||||
|
print(f" HR: {rating['homerun']+rating['bp_homerun']:.1f} ({100*(rating['homerun']+rating['bp_homerun'])/total_hits:.1f}%)")
|
||||||
|
|
||||||
|
# On-base
|
||||||
|
print(f"\n On-Base:")
|
||||||
|
print(f" Walks: {rating['walk']:.1f}")
|
||||||
|
print(f" HBP: {rating['hbp']:.1f}")
|
||||||
|
print(f" Strikeouts: {rating['strikeout']:.1f}")
|
||||||
|
|
||||||
|
# Outs distribution
|
||||||
|
total_outs = (rating['strikeout'] + rating['lineout'] + rating['popout'] +
|
||||||
|
rating['flyout_a'] + rating['flyout_bq'] + rating['flyout_lf_b'] +
|
||||||
|
rating['flyout_rf_b'] + rating['groundout_a'] + rating['groundout_b'] +
|
||||||
|
rating['groundout_c'])
|
||||||
|
fly_outs = (rating['flyout_a'] + rating['flyout_bq'] +
|
||||||
|
rating['flyout_lf_b'] + rating['flyout_rf_b'])
|
||||||
|
ground_outs = rating['groundout_a'] + rating['groundout_b'] + rating['groundout_c']
|
||||||
|
|
||||||
|
print(f"\n Outs Distribution:")
|
||||||
|
print(f" Strikeouts: {rating['strikeout']:.1f}")
|
||||||
|
print(f" Line outs: {rating['lineout']:.1f}")
|
||||||
|
print(f" Fly outs: {fly_outs:.1f}")
|
||||||
|
print(f" Ground outs: {ground_outs:.1f}")
|
||||||
|
print(f" Pop outs: {rating['popout']:.1f}")
|
||||||
|
|
||||||
|
# Verify total = 108
|
||||||
|
total_chances = sum([
|
||||||
|
rating['homerun'], rating['bp_homerun'], rating['triple'],
|
||||||
|
rating['double_three'], rating['double_two'], rating['double_pull'],
|
||||||
|
rating['single_two'], rating['single_one'], rating['single_center'], rating['bp_single'],
|
||||||
|
rating['hbp'], rating['walk'], rating['strikeout'],
|
||||||
|
rating['lineout'], rating['popout'],
|
||||||
|
rating['flyout_a'], rating['flyout_bq'], rating['flyout_lf_b'], rating['flyout_rf_b'],
|
||||||
|
rating['groundout_a'], rating['groundout_b'], rating['groundout_c']
|
||||||
|
])
|
||||||
|
print(f"\n Total Chances: {total_chances:.2f} (must be 108.0)")
|
||||||
|
|
||||||
|
# Calculate and display total OPS
|
||||||
|
total_ops = calculate_total_ops(ratings[0], ratings[1], is_pitcher=False)
|
||||||
|
print()
|
||||||
|
print("="*70)
|
||||||
|
print(f"TOTAL OPS: {total_ops:.3f} (Target: 0.825)")
|
||||||
|
if abs(total_ops - 0.825) <= 0.005:
|
||||||
|
print("✓ Within target range!")
|
||||||
|
elif abs(total_ops - 0.825) <= 0.015:
|
||||||
|
print("~ Close to target (can tweak if needed)")
|
||||||
|
else:
|
||||||
|
print("⚠ Outside target range - needs adjustment")
|
||||||
|
print("="*70)
|
||||||
|
|
||||||
|
# Show baserunning
|
||||||
|
print()
|
||||||
|
print("Baserunning Ratings (Stratomatic Format):")
|
||||||
|
print(f" Steal Range: {baserunning['steal_low']}-{baserunning['steal_high']} (on 2d10)")
|
||||||
|
print(f" Steal Auto: {baserunning['steal_auto']} (0=No, 1=Yes)")
|
||||||
|
print(f" Steal Jump: {baserunning['steal_jump']} (out of 1.0, = {int(baserunning['steal_jump']*36)}/36 chances)")
|
||||||
|
print(f" Running: {baserunning['running']} (scale 8-17)")
|
||||||
|
print(f" Hit-and-Run: {baserunning['hit_and_run']} (letter grade A/B/C/D)")
|
||||||
|
|
||||||
|
print()
|
||||||
|
print("="*70)
|
||||||
|
print("DETAILED D20 RATINGS (Side-by-Side Comparison)")
|
||||||
|
print("="*70)
|
||||||
|
print()
|
||||||
|
|
||||||
|
# Create table header
|
||||||
|
print(f"{'Rating':<25} {'vs LHP':>10} {'vs RHP':>10}")
|
||||||
|
print("-" * 70)
|
||||||
|
|
||||||
|
# Extract ratings for easier access
|
||||||
|
vl = ratings[0] # vs LHP
|
||||||
|
vr = ratings[1] # vs RHP
|
||||||
|
|
||||||
|
# Display all ratings in table format
|
||||||
|
rating_pairs = [
|
||||||
|
("Homerun", 'homerun'),
|
||||||
|
("BP Homerun", 'bp_homerun'),
|
||||||
|
("Triple", 'triple'),
|
||||||
|
("Double (3-zone)", 'double_three'),
|
||||||
|
("Double (2-zone)", 'double_two'),
|
||||||
|
("Double (Pull)", 'double_pull'),
|
||||||
|
("Single (2-zone)", 'single_two'),
|
||||||
|
("Single (1-zone)", 'single_one'),
|
||||||
|
("Single (Center)", 'single_center'),
|
||||||
|
("BP Single", 'bp_single'),
|
||||||
|
("Walk", 'walk'),
|
||||||
|
("HBP", 'hbp'),
|
||||||
|
("Strikeout", 'strikeout'),
|
||||||
|
("Lineout", 'lineout'),
|
||||||
|
("Popout", 'popout'),
|
||||||
|
("Flyout A", 'flyout_a'),
|
||||||
|
("Flyout BQ", 'flyout_bq'),
|
||||||
|
("Flyout LF-B", 'flyout_lf_b'),
|
||||||
|
("Flyout RF-B", 'flyout_rf_b'),
|
||||||
|
("Groundout A", 'groundout_a'),
|
||||||
|
("Groundout B", 'groundout_b'),
|
||||||
|
("Groundout C", 'groundout_c'),
|
||||||
|
]
|
||||||
|
|
||||||
|
for label, key in rating_pairs:
|
||||||
|
print(f"{label:<25} {vl[key]:>10.2f} {vr[key]:>10.2f}")
|
||||||
|
|
||||||
|
# Show totals
|
||||||
|
vl_total = sum([vl[key] for _, key in rating_pairs])
|
||||||
|
vr_total = sum([vr[key] for _, key in rating_pairs])
|
||||||
|
print("-" * 70)
|
||||||
|
print(f"{'TOTAL CHANCES':<25} {vl_total:>10.2f} {vr_total:>10.2f}")
|
||||||
|
print(f"{'(must be 108.0)':<25} {'':>10} {'':>10}")
|
||||||
|
|
||||||
|
print()
|
||||||
|
print("="*70)
|
||||||
|
print("NEXT STEPS")
|
||||||
|
print("="*70)
|
||||||
|
print()
|
||||||
|
print("1. Review the ratings above")
|
||||||
|
print("2. If you want adjustments, I can:")
|
||||||
|
print(" - Tweak the power distribution (more/less HR)")
|
||||||
|
print(" - Adjust contact rate (K rate)")
|
||||||
|
print(" - Fine-tune OPS to hit exact target")
|
||||||
|
print(" - Modify hit distribution (singles/doubles ratio)")
|
||||||
|
print()
|
||||||
|
print("3. When you approve, I will create:")
|
||||||
|
print(" - MLBPlayer record")
|
||||||
|
print(" - Player record")
|
||||||
|
print(" - BattingCard record")
|
||||||
|
print(" - BattingCardRatings (vs L and vs R)")
|
||||||
|
print(" - CardPosition records (LF, 2B)")
|
||||||
|
print()
|
||||||
|
print("4. Defensive ratings (Range/Error/Arm) will need to be")
|
||||||
|
print(" set via defenders module or manual database update")
|
||||||
|
print()
|
||||||
|
print("⚠️ NOT POSTED TO DATABASE - AWAITING YOUR APPROVAL")
|
||||||
|
print("="*70)
|
||||||
129
fix_switch_hitters.py
Normal file
129
fix_switch_hitters.py
Normal file
@ -0,0 +1,129 @@
|
|||||||
|
"""Fix switch hitter cards by regenerating with correct handedness and uploading to S3"""
|
||||||
|
import os
|
||||||
|
import sys
|
||||||
|
import asyncio
|
||||||
|
import aiohttp
|
||||||
|
import boto3
|
||||||
|
from datetime import datetime
|
||||||
|
from pathlib import Path
|
||||||
|
|
||||||
|
# Add parent directory to path for imports
|
||||||
|
sys.path.insert(0, '/home/cal/.claude/skills/paper-dynasty')
|
||||||
|
from api_client import PaperDynastyAPI
|
||||||
|
|
||||||
|
# Configuration
|
||||||
|
SWITCH_HITTER_IDS = [12785, 12788, 12854, 12735, 12858, 12786, 12852, 12727, 12757, 12831, 12748]
|
||||||
|
PLAYER_NAMES = [
|
||||||
|
"Bernie Williams", "Brian Roberts", "Carlos Beltran", "Chone Figgins",
|
||||||
|
"Jimmy Rollins", "Jorge Posada", "Jose Reyes", "Mark Teixeira",
|
||||||
|
"Nick Swisher", "Omar Vizquel", "Victor Martinez"
|
||||||
|
]
|
||||||
|
CARDSET_ID = 27
|
||||||
|
NEW_DATE = "2025-11-12" # Tomorrow's date for cache-busting
|
||||||
|
AWS_BUCKET = "paper-dynasty"
|
||||||
|
AWS_REGION = "us-east-1"
|
||||||
|
|
||||||
|
# Initialize API client
|
||||||
|
api = PaperDynastyAPI(environment='prod', verbose=True)
|
||||||
|
|
||||||
|
# Initialize S3 client
|
||||||
|
s3_client = boto3.client('s3', region_name=AWS_REGION)
|
||||||
|
|
||||||
|
|
||||||
|
async def fetch_and_save_card(session: aiohttp.ClientSession, player_id: int, player_name: str) -> str:
|
||||||
|
"""Fetch card image from API and save locally"""
|
||||||
|
card_url = f"https://pd.manticorum.com/api/v2/players/{player_id}/battingcard?d={NEW_DATE}"
|
||||||
|
|
||||||
|
print(f"Fetching card for {player_name} (ID: {player_id})...")
|
||||||
|
print(f" URL: {card_url}")
|
||||||
|
|
||||||
|
async with session.get(card_url) as response:
|
||||||
|
if response.status != 200:
|
||||||
|
raise Exception(f"Failed to fetch card: HTTP {response.status}")
|
||||||
|
|
||||||
|
# Save to temp directory
|
||||||
|
temp_dir = Path(f"/tmp/switch_hitter_cards")
|
||||||
|
temp_dir.mkdir(exist_ok=True)
|
||||||
|
|
||||||
|
file_path = temp_dir / f"player-{player_id}-battingcard.png"
|
||||||
|
|
||||||
|
with open(file_path, 'wb') as f:
|
||||||
|
f.write(await response.read())
|
||||||
|
|
||||||
|
print(f" ✓ Saved to {file_path}")
|
||||||
|
return str(file_path)
|
||||||
|
|
||||||
|
|
||||||
|
def upload_to_s3(file_path: str, player_id: int) -> str:
|
||||||
|
"""Upload card to S3 and return the URL"""
|
||||||
|
s3_key = f"cards/cardset-{CARDSET_ID:03d}/player-{player_id}/battingcard.png"
|
||||||
|
|
||||||
|
print(f" Uploading to S3: s3://{AWS_BUCKET}/{s3_key}")
|
||||||
|
|
||||||
|
with open(file_path, 'rb') as f:
|
||||||
|
s3_client.put_object(
|
||||||
|
Bucket=AWS_BUCKET,
|
||||||
|
Key=s3_key,
|
||||||
|
Body=f,
|
||||||
|
ContentType='image/png',
|
||||||
|
CacheControl='public, max-age=31536000' # 1 year cache
|
||||||
|
)
|
||||||
|
|
||||||
|
# Return the S3 URL with cache-busting date
|
||||||
|
s3_url = f"https://{AWS_BUCKET}.s3.{AWS_REGION}.amazonaws.com/{s3_key}?d={NEW_DATE}"
|
||||||
|
print(f" ✓ Uploaded to S3: {s3_url}")
|
||||||
|
|
||||||
|
return s3_url
|
||||||
|
|
||||||
|
|
||||||
|
def update_player_image_url(player_id: int, s3_url: str):
|
||||||
|
"""Update player record with new S3 image URL"""
|
||||||
|
print(f" Updating player {player_id} image URL...")
|
||||||
|
|
||||||
|
result = api.patch('players', object_id=player_id, params=[('image', s3_url)])
|
||||||
|
|
||||||
|
print(f" ✓ Updated player record")
|
||||||
|
return result
|
||||||
|
|
||||||
|
|
||||||
|
async def main():
|
||||||
|
print("=" * 80)
|
||||||
|
print("FIXING SWITCH HITTER CARDS")
|
||||||
|
print("=" * 80)
|
||||||
|
print(f"Players to fix: {len(SWITCH_HITTER_IDS)}")
|
||||||
|
print(f"New date: {NEW_DATE}")
|
||||||
|
print(f"S3 Bucket: {AWS_BUCKET}")
|
||||||
|
print("=" * 80)
|
||||||
|
print()
|
||||||
|
|
||||||
|
async with aiohttp.ClientSession() as session:
|
||||||
|
for idx, player_id in enumerate(SWITCH_HITTER_IDS, 1):
|
||||||
|
player_name = PLAYER_NAMES[idx - 1]
|
||||||
|
|
||||||
|
print(f"\n[{idx}/{len(SWITCH_HITTER_IDS)}] Processing {player_name} (ID: {player_id})")
|
||||||
|
print("-" * 80)
|
||||||
|
|
||||||
|
try:
|
||||||
|
# Step 1: Fetch card from API (triggers regeneration)
|
||||||
|
file_path = await fetch_and_save_card(session, player_id, player_name)
|
||||||
|
|
||||||
|
# Step 2: Upload to S3
|
||||||
|
s3_url = upload_to_s3(file_path, player_id)
|
||||||
|
|
||||||
|
# Step 3: Update player record
|
||||||
|
update_player_image_url(player_id, s3_url)
|
||||||
|
|
||||||
|
print(f" ✅ COMPLETED: {player_name}")
|
||||||
|
|
||||||
|
except Exception as e:
|
||||||
|
print(f" ❌ ERROR: {e}")
|
||||||
|
continue
|
||||||
|
|
||||||
|
print("\n" + "=" * 80)
|
||||||
|
print("ALL SWITCH HITTERS PROCESSED")
|
||||||
|
print("=" * 80)
|
||||||
|
print(f"\nVerify Bernie Williams: https://paper-dynasty.s3.us-east-1.amazonaws.com/cards/cardset-027/player-12785/battingcard.png?d={NEW_DATE}")
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
asyncio.run(main())
|
||||||
File diff suppressed because it is too large
Load Diff
@ -4702,16 +4702,6 @@ player_id,player_name,cardset_name,rarity,hand,variant,pull_rate_vl,center_rate_
|
|||||||
4758.0,King K Rool,Mario Super Sluggers,All-Star,R,0.0,0.31413612565445,0.31413612565445,0.371727748691099,1.0,3.0,0.0,0.0,1.1,3.3,7.2,0.0,14.0,5.0,1.0,19.25,6.75,10.0,2.0,0.0,0.0,2.7,6.0,17.7,0.0,8.0,0.2833333333333333,0.4708333333333333,0.39351851851851855,0.0,0.0,False,0.0,C,C,12.0,3.0,8.0,0.470997679814385,0.185614849187935,0.34338747099768,4.85,3.0,0.0,0.0,2.4,7.4,4.25,0.0,8.0,5.0,0.0,15.6,19.4,6.0,6.0,0.0,0.0,2.6,4.15,6.35,3.0,10.0,0.2861111111111111,0.4305555555555556,0.5532407407407407,,2.0,,,3.0,,,,,,4.0,,,12.0,,,,,,-1.0,2.0,8.0
|
4758.0,King K Rool,Mario Super Sluggers,All-Star,R,0.0,0.31413612565445,0.31413612565445,0.371727748691099,1.0,3.0,0.0,0.0,1.1,3.3,7.2,0.0,14.0,5.0,1.0,19.25,6.75,10.0,2.0,0.0,0.0,2.7,6.0,17.7,0.0,8.0,0.2833333333333333,0.4708333333333333,0.39351851851851855,0.0,0.0,False,0.0,C,C,12.0,3.0,8.0,0.470997679814385,0.185614849187935,0.34338747099768,4.85,3.0,0.0,0.0,2.4,7.4,4.25,0.0,8.0,5.0,0.0,15.6,19.4,6.0,6.0,0.0,0.0,2.6,4.15,6.35,3.0,10.0,0.2861111111111111,0.4305555555555556,0.5532407407407407,,2.0,,,3.0,,,,,,4.0,,,12.0,,,,,,-1.0,2.0,8.0
|
||||||
4759.0,Koopa Troopa,Mario Super Sluggers,Starter,L,0.0,0.687022900763359,0.0129770992366412,0.3,0.0,0.0,6.5,0.0,2.1,6.5,5.4,0.0,6.05,5.0,0.0,8.85,9.15,10.0,2.0,0.0,0.0,3.5,6.95,18.0,0.0,18.0,0.2689814814814815,0.3509259259259259,0.4689814814814815,0.0,0.0,False,0.0,C,B,13.0,3.0,8.0,0.504885993485342,0.260586319218241,0.234527687296417,0.0,1.0,0.0,0.0,1.5,5.95,9.3,3.65,15.0,5.0,0.0,6.2,10.8,6.0,2.0,0.0,0.0,2.05,3.0,9.2,0.0,27.35,0.35555555555555557,0.412962962962963,0.43842592592592594,,,,,,,3.0,2.0,3.0,,,,,,,6.0,6.0,6.0,0.0,,,
|
4759.0,Koopa Troopa,Mario Super Sluggers,Starter,L,0.0,0.687022900763359,0.0129770992366412,0.3,0.0,0.0,6.5,0.0,2.1,6.5,5.4,0.0,6.05,5.0,0.0,8.85,9.15,10.0,2.0,0.0,0.0,3.5,6.95,18.0,0.0,18.0,0.2689814814814815,0.3509259259259259,0.4689814814814815,0.0,0.0,False,0.0,C,B,13.0,3.0,8.0,0.504885993485342,0.260586319218241,0.234527687296417,0.0,1.0,0.0,0.0,1.5,5.95,9.3,3.65,15.0,5.0,0.0,6.2,10.8,6.0,2.0,0.0,0.0,2.05,3.0,9.2,0.0,27.35,0.35555555555555557,0.412962962962963,0.43842592592592594,,,,,,,3.0,2.0,3.0,,,,,,,6.0,6.0,6.0,0.0,,,
|
||||||
4761.0,Shy Guy,Mario Super Sluggers,Starter,L,0.0,0.575498575498575,0.0245014245014246,0.4,1.25,3.0,0.0,0.0,1.8,6.1,6.15,0.0,12.0,5.0,0.0,15.35,1.65,15.0,1.0,0.0,0.0,7.65,4.0,28.05,0.0,0.0,0.2898148148148148,0.43194444444444446,0.4393518518518518,3.0,20.0,False,0.027778,C,B,10.0,3.0,8.0,0.4375,0.277777777777778,0.284722222222222,0.0,2.0,0.0,0.0,1.3,5.1,8.2,0.0,16.0,5.0,0.0,16.35,7.65,14.0,0.0,0.0,0.0,1.9,2.0,27.5,0.0,1.0,0.31574074074074077,0.4671296296296296,0.4027777777777778,,,3.0,,,,3.0,,3.0,,,1.0,,,,0.0,,0.0,0.0,,,
|
4761.0,Shy Guy,Mario Super Sluggers,Starter,L,0.0,0.575498575498575,0.0245014245014246,0.4,1.25,3.0,0.0,0.0,1.8,6.1,6.15,0.0,12.0,5.0,0.0,15.35,1.65,15.0,1.0,0.0,0.0,7.65,4.0,28.05,0.0,0.0,0.2898148148148148,0.43194444444444446,0.4393518518518518,3.0,20.0,False,0.027778,C,B,10.0,3.0,8.0,0.4375,0.277777777777778,0.284722222222222,0.0,2.0,0.0,0.0,1.3,5.1,8.2,0.0,16.0,5.0,0.0,16.35,7.65,14.0,0.0,0.0,0.0,1.9,2.0,27.5,0.0,1.0,0.31574074074074077,0.4671296296296296,0.4027777777777778,,,3.0,,,,3.0,,3.0,,,1.0,,,,0.0,,0.0,0.0,,,
|
||||||
1842.0,Nolan Arenado,2022 Promos,Hall of Fame,R,0.0,0.38,0.37,0.25,10.2,6.8,0.0,0.0,2.2,6.7,3.25,0.0,6.55,5.0,0.0,7.0,4.9,12.3,3.25,0.0,12.65,6.3,3.5,2.8,7.3,7.3,0.3222222222222222,0.387037037037037,0.7824074074074074,0.0,0.0,False,0.0,C,B,13.0,2.0,4.0,0.41,0.37,0.22,2.6,7.75,0.0,0.0,3.7,11.15,12.0,8.2,0.0,5.0,3.0,8.35,5.8,9.4,1.5,1.0,4.25,4.85,3.1,0.25,16.1,0.0,0.40763888888888894,0.5127314814814815,0.725,,,,,1.0,,,,,,,,,16.0,,,,,,,,
|
|
||||||
1843.0,Alex Bregman,2022 Promos,Hall of Fame,R,0.0,0.38,0.37,0.25,10.15,6.75,0.0,0.0,0.0,0.0,19.15,4.1,5.5,5.0,0.0,35.35,1.35,5.65,0.0,1.0,0.0,3.35,1.8,0.4,4.6,3.85,0.4145833333333333,0.7418981481481481,0.7902777777777777,3.0,7.0,False,0.0555555555555556,C,B,13.0,3.0,4.0,0.41,0.37,0.22,2.1,6.3,0.0,0.0,3.8,11.5,5.65,1.9,9.35,5.0,2.0,12.2,4.7,7.35,0.0,0.0,9.25,6.65,4.15,1.3,6.4,8.4,0.3699074074074074,0.5013888888888889,0.6574074074074074,,,,,4.0,,,,,,,,,10.0,,,,,,,,
|
|
||||||
1846.0,Austin Riley,2022 Promos,Hall of Fame,R,0.0,0.38,0.37,0.25,14.9,9.95,0.0,0.0,4.6,13.8,14.65,0.0,7.35,5.0,0.0,9.95,5.35,0.0,0.0,1.0,0.0,9.0,6.3,0.0,3.55,2.6,0.58125,0.6733796296296297,1.3037037037037038,3.0,20.0,False,0.0277777777777778,C,A,12.0,3.0,4.0,0.41,0.37,0.22,7.85,5.2,0.0,0.0,4.05,12.1,10.7,0.0,5.4,5.0,0.0,7.6,8.85,0.0,1.65,1.0,4.95,10.85,6.1,1.85,8.9,5.95,0.41851851851851846,0.4888888888888888,0.8583333333333334,,,,,3.0,,,,,,,,,20.0,,,,,,,,
|
|
||||||
1847.0,Aaron Judge,2022 Promos,Hall of Fame,R,0.0,0.38,0.37,0.25,11.95,7.95,0.0,0.0,0.0,14.65,13.95,0.0,7.0,5.0,7.0,14.6,4.3,3.6,0.0,1.0,0.0,3.75,1.25,0.0,6.0,6.0,0.5002314814814814,0.7002314814814814,1.0782407407407408,3.0,16.0,True,0.138888888888889,C,B,13.0,2.0,4.0,0.41,0.37,0.22,12.65,8.4,0.0,0.0,0.55,1.7,7.75,0.6,3.25,5.0,1.0,21.05,13.7,3.9,0.0,1.0,0.0,7.85,4.8,2.95,6.85,5.0,0.3074074074074074,0.5115740740740741,0.7962962962962963,,,,,,,,3.0,2.0,,,,,,,,0.0,0.0,0.0,,,
|
|
||||||
1850.0,Yordan Alvarez,2022 Promos,Hall of Fame,L,0.0,0.38,0.37,0.25,6.85,4.6,0.0,0.0,2.1,6.4,6.65,4.0,9.25,5.0,4.0,20.3,7.3,9.45,0.0,0.0,0.0,1.55,2.85,0.7,0.0,17.0,0.3708333333333333,0.5958333333333333,0.7037037037037037,0.0,0.0,False,0.0,C,A,12.0,2.0,4.0,0.41,0.37,0.22,11.8,7.9,1.6,0.0,0.8,2.35,19.5,2.1,7.65,5.0,4.0,16.25,3.2,0.0,0.0,1.0,4.0,6.0,4.0,3.25,4.2,3.4,0.4837962962962963,0.6712962962962963,0.9800925925925925,,,,,,,2.0,,,,,,,,,5.0,,,0.0,,,
|
|
||||||
1851.0,Josh Bell,2022 Promos,Hall of Fame,S,0.0,0.38,0.37,0.25,12.35,8.2,3.1,0.0,0.8,2.35,2.8,0.0,5.6,5.0,0.0,18.5,7.05,8.45,0.0,0.0,0.0,8.75,7.45,0.0,0.0,17.6,0.3111111111111111,0.4824074074074074,0.8546296296296295,0.0,0.0,False,0.0,C,B,11.0,2.0,4.0,0.41,0.37,0.22,4.1,2.7,1.85,0.0,2.75,8.25,16.3,3.5,4.65,5.0,2.0,17.7,7.45,0.0,0.0,1.0,2.25,7.35,2.4,0.0,11.15,7.6,0.4189814814814814,0.6013888888888888,0.7064814814814815,,,5.0,,,,,,,,,10.0,,,,,,,,,,
|
|
||||||
1887.0,Paul Goldschmidt,2022 Promos,Hall of Fame,R,0.0,0.38,0.37,0.25,9.4,6.3,0.0,0.0,8.0,18.0,9.7,0.0,18.0,5.0,0.0,27.0,0.0,0.0,0.0,0.0,0.0,3.0,3.6,0.0,0.0,0.0,0.6365740740740741,0.8865740740740741,1.225925925925926,3.0,20.0,False,0.0555555555555556,C,A,12.0,2.0,4.0,0.41,0.37,0.22,4.1,2.7,1.85,0.0,2.75,8.25,16.3,3.5,4.65,5.0,2.0,17.7,7.45,0.0,0.0,1.0,2.25,7.35,2.4,0.0,11.15,7.6,0.4189814814814814,0.6013888888888888,0.7064814814814815,,,3.0,,,,,,,,,1.0,,,,,,,,,,
|
|
||||||
1888.0,Rafael Devers,2022 Promos,Hall of Fame,L,0.0,0.38,0.37,0.25,3.3,2.2,0.0,0.0,4.6,13.85,6.35,0.0,12.65,5.0,0.0,0.0,20.0,20.0,0.0,0.0,1.1,1.1,1.15,0.0,0.0,16.7,0.41064814814814815,0.41064814814814815,0.7037037037037037,3.0,10.0,False,0.0277777777777778,C,A,11.0,3.0,4.0,0.41,0.37,0.22,6.9,4.6,1.3,0.0,2.85,8.6,13.75,0.0,6.9,5.0,0.0,10.45,7.7,0.0,0.0,1.0,0.0,11.45,9.0,1.15,8.55,8.8,0.4175925925925926,0.5143518518518518,0.8032407407407407,,,,,3.0,,,,,,,,,22.0,,,,,,,,
|
|
||||||
1892.0,Manny Machado,2022 Promos,Hall of Fame,R,0.0,0.38,0.37,0.25,9.7,6.5,0.0,0.0,0.0,0.0,25.4,0.0,12.75,5.0,0.0,13.9,2.5,0.0,0.0,1.0,9.0,4.0,2.0,0.7,15.55,0.0,0.49629629629629624,0.625,0.8560185185185184,3.0,16.0,False,0.0833333333333333,C,A,14.0,2.0,4.0,0.41,0.37,0.22,0.65,1.9,0.0,0.0,7.5,7.55,7.85,0.0,15.7,5.0,2.0,13.45,9.7,6.55,0.0,0.0,11.0,1.0,0.7,0.3,17.15,0.0,0.39537037037037037,0.5384259259259259,0.5791666666666666,,,,,4.0,,,,,,,,,21.0,,,,,,,,
|
|
||||||
1891.0,Mike Trout,2022 Promos,Hall of Fame,R,0.0,0.38,0.37,0.25,0.0,0.0,0.0,0.0,5.1,15.35,5.15,5.2,5.15,5.0,0.0,31.1,4.3,6.75,1.15,0.0,5.0,2.55,1.35,0.0,7.45,7.4,0.35601851851851857,0.6439814814814815,0.5453703703703704,3.0,20.0,False,0.0277777777777778,C,B,12.0,2.0,4.0,0.41,0.37,0.22,10.4,6.95,2.45,0.0,1.85,5.5,3.35,3.4,3.35,5.0,5.0,15.35,8.9,5.55,0.0,0.0,7.5,7.35,5.8,0.25,4.55,5.5,0.33587962962962964,0.5243055555555556,0.8347222222222221,,,,,,,,3.0,,,,,,,,,1.0,,1.0,,,
|
|
||||||
5145.0,Brent Rooker,2023 Promos,Hall of Fame,R,0.0,0.445983379501385,0.387811634349031,0.166204986149584,11.95,8.0,0.0,0.0,0.0,0.0,9.95,0.0,5.0,5.0,0.0,12.95,21.05,5.0,5.0,1.0,0.0,8.05,0.0,1.05,12.0,2.0,0.30925925925925923,0.42916666666666664,0.7523148148148148,0.0,0.0,False,0.0,C,C,11.0,2.0,10.0,0.561946902654867,0.315398230088496,0.122654867256637,10.65,7.0,0.0,0.0,0.0,3.0,8.55,0.0,15.0,5.0,5.0,24.0,11.0,6.0,0.0,0.0,0.0,3.0,3.35,2.45,0.0,4.0,0.4,0.6685185185185185,0.8208333333333333,,,,,,,3.0,,5.0,,,,,,,3.0,,3.0,0.0,,,
|
5145.0,Brent Rooker,2023 Promos,Hall of Fame,R,0.0,0.445983379501385,0.387811634349031,0.166204986149584,11.95,8.0,0.0,0.0,0.0,0.0,9.95,0.0,5.0,5.0,0.0,12.95,21.05,5.0,5.0,1.0,0.0,8.05,0.0,1.05,12.0,2.0,0.30925925925925923,0.42916666666666664,0.7523148148148148,0.0,0.0,False,0.0,C,C,11.0,2.0,10.0,0.561946902654867,0.315398230088496,0.122654867256637,10.65,7.0,0.0,0.0,0.0,3.0,8.55,0.0,15.0,5.0,5.0,24.0,11.0,6.0,0.0,0.0,0.0,3.0,3.35,2.45,0.0,4.0,0.4,0.6685185185185185,0.8208333333333333,,,,,,,3.0,,5.0,,,,,,,3.0,,3.0,0.0,,,
|
||||||
5146.0,Luis Arraez,2023 Promos,MVP,L,0.0,0.25,0.55,0.2,0.0,0.0,0.0,0.0,0.0,0.0,14.75,0.0,29.0,5.0,0.0,6.5,7.5,17.0,1.0,0.0,0.0,0.0,2.0,10.25,5.0,10.0,0.42824074074074076,0.48842592592592593,0.42824074074074076,3.0,7.0,False,0.055556,C,A,10.0,2.0,10.0,0.666666666666667,0.153333333333333,0.18,0.0,1.0,1.8,0.0,2.3,8.25,13.55,0.0,27.0,5.0,2.0,8.0,10.0,1.0,0.0,0.0,0.0,2.75,2.0,4.35,8.0,11.0,0.5175925925925926,0.6101851851851852,0.6625,,,,1.0,,,,,,,,,0.0,,,,,,,,,
|
5146.0,Luis Arraez,2023 Promos,MVP,L,0.0,0.25,0.55,0.2,0.0,0.0,0.0,0.0,0.0,0.0,14.75,0.0,29.0,5.0,0.0,6.5,7.5,17.0,1.0,0.0,0.0,0.0,2.0,10.25,5.0,10.0,0.42824074074074076,0.48842592592592593,0.42824074074074076,3.0,7.0,False,0.055556,C,A,10.0,2.0,10.0,0.666666666666667,0.153333333333333,0.18,0.0,1.0,1.8,0.0,2.3,8.25,13.55,0.0,27.0,5.0,2.0,8.0,10.0,1.0,0.0,0.0,0.0,2.75,2.0,4.35,8.0,11.0,0.5175925925925926,0.6101851851851852,0.6625,,,,1.0,,,,,,,,,0.0,,,,,,,,,
|
||||||
5147.0,Matt Chapman,2023 Promos,Hall of Fame,R,0.0,0.676413255360624,0.242690058479532,0.0808966861598441,2.65,8.0,0.0,0.0,4.3,12.85,24.4,0.0,12.0,5.0,0.0,8.9,7.1,3.0,2.0,0.0,0.0,4.5,4.0,0.0,7.3,2.0,0.5805555555555556,0.662962962962963,0.924074074074074,0.0,0.0,False,0.0,C,A,12.0,3.0,10.0,0.567883211678832,0.204379562043796,0.227737226277372,1.5,4.0,0.0,0.0,4.8,15.25,7.6,0.0,3.05,5.0,2.0,18.85,12.15,12.0,1.0,1.0,1.95,4.25,0.0,4.6,4.0,5.0,0.3398148148148148,0.5328703703703703,0.6226851851851852,,,,,1.0,,,,,,,,,2.0,,,,,,,,
|
5147.0,Matt Chapman,2023 Promos,Hall of Fame,R,0.0,0.676413255360624,0.242690058479532,0.0808966861598441,2.65,8.0,0.0,0.0,4.3,12.85,24.4,0.0,12.0,5.0,0.0,8.9,7.1,3.0,2.0,0.0,0.0,4.5,4.0,0.0,7.3,2.0,0.5805555555555556,0.662962962962963,0.924074074074074,0.0,0.0,False,0.0,C,A,12.0,3.0,10.0,0.567883211678832,0.204379562043796,0.227737226277372,1.5,4.0,0.0,0.0,4.8,15.25,7.6,0.0,3.05,5.0,2.0,18.85,12.15,12.0,1.0,1.0,1.95,4.25,0.0,4.6,4.0,5.0,0.3398148148148148,0.5328703703703703,0.6226851851851852,,,,,1.0,,,,,,,,,2.0,,,,,,,,
|
||||||
@ -5191,6 +5181,40 @@ player_id,player_name,cardset_name,rarity,hand,variant,pull_rate_vl,center_rate_
|
|||||||
11301.0,Alberto Castillo,1998 Season,Replacement,R,0.0,0.25,0.5,0.25,6.9,4.0,0.0,0.0,0.0,0.0,3.8,0.0,7.6,5.0,0.0,24.7,5.3,5.0,15.0,0.0,0.4,1.0,2.1,0.0,27.2,0.0,0.2111111111111111,0.4398148148148148,0.4583333333333333,0.0,0.0,False,0.0,B,D,14.0,2.0,20.0,0.22857,0.17143,0.6,1.5,1.0,0.0,0.0,4.2,3.5,0.0,2.2,0.0,5.0,2.0,9.25,14.75,11.0,6.0,0.0,0.0,0.0,1.8,4.0,38.8,3.0,0.13333333333333333,0.2375,0.2601851851851852,,2.0,,,,,,,,,4.0,,,,,,,,,-4.0,4.0,9.0
|
11301.0,Alberto Castillo,1998 Season,Replacement,R,0.0,0.25,0.5,0.25,6.9,4.0,0.0,0.0,0.0,0.0,3.8,0.0,7.6,5.0,0.0,24.7,5.3,5.0,15.0,0.0,0.4,1.0,2.1,0.0,27.2,0.0,0.2111111111111111,0.4398148148148148,0.4583333333333333,0.0,0.0,False,0.0,B,D,14.0,2.0,20.0,0.22857,0.17143,0.6,1.5,1.0,0.0,0.0,4.2,3.5,0.0,2.2,0.0,5.0,2.0,9.25,14.75,11.0,6.0,0.0,0.0,0.0,1.8,4.0,38.8,3.0,0.13333333333333333,0.2375,0.2601851851851852,,2.0,,,,,,,,,4.0,,,,,,,,,-4.0,4.0,9.0
|
||||||
11302.0,Aramis Ramirez,1998 Season,Reserve,R,0.0,0.32692,0.34615,0.32693,1.7,5.0,3.5,0.0,1.9,1.9,4.2,5.95,1.95,5.0,5.0,10.9,24.1,6.0,4.0,0.0,1.05,1.1,1.3,0.0,19.45,4.0,0.24166666666666667,0.3888888888888889,0.4583333333333333,0.0,0.0,False,0.0,D,C,9.0,3.0,20.0,0.24457,0.1,0.65543,0.0,3.0,0.0,0.0,3.9,3.8,3.9,5.7,1.9,5.0,1.0,8.55,23.45,12.0,10.0,0.0,1.1,0.2,2.0,3.2,15.3,4.0,0.21481481481481482,0.30324074074074076,0.3277777777777778,,,,,5.0,,,,,,,,,29.0,,,,,,,,
|
11302.0,Aramis Ramirez,1998 Season,Reserve,R,0.0,0.32692,0.34615,0.32693,1.7,5.0,3.5,0.0,1.9,1.9,4.2,5.95,1.95,5.0,5.0,10.9,24.1,6.0,4.0,0.0,1.05,1.1,1.3,0.0,19.45,4.0,0.24166666666666667,0.3888888888888889,0.4583333333333333,0.0,0.0,False,0.0,D,C,9.0,3.0,20.0,0.24457,0.1,0.65543,0.0,3.0,0.0,0.0,3.9,3.8,3.9,5.7,1.9,5.0,1.0,8.55,23.45,12.0,10.0,0.0,1.1,0.2,2.0,3.2,15.3,4.0,0.21481481481481482,0.30324074074074076,0.3277777777777778,,,,,5.0,,,,,,,,,29.0,,,,,,,,
|
||||||
11315.0,Exeggcute,Pokemon Brilliant Stars,Starter,L,0.0,0.3264095,0.34718101,0.3264095,1.65,5.0,1.65,0.0,2.5,7.35,12.55,0.0,6.3,5.0,1.0,9.9,18.1,5.0,9.0,0.0,0.0,7.0,5.7,0.0,5.3,5.0,0.3425925925925926,0.44351851851851853,0.5796296296296296,2.0,20.0,False,0.0277777777777778,B,B,10.0,3.0,23.0,0.3264095,0.34718101,0.3264095,1.7,6.0,0.0,0.0,1.8,5.7,2.2,0.0,6.9,5.0,1.0,13.25,15.75,13.0,5.0,0.0,2.1,5.6,6.0,8.0,2.0,7.0,0.22037037037037036,0.3523148148148148,0.42037037037037045,,,1.0,2.0,,,2.0,,,,,3.0,8.0,,,4.0,,,0.0,,,
|
11315.0,Exeggcute,Pokemon Brilliant Stars,Starter,L,0.0,0.3264095,0.34718101,0.3264095,1.65,5.0,1.65,0.0,2.5,7.35,12.55,0.0,6.3,5.0,1.0,9.9,18.1,5.0,9.0,0.0,0.0,7.0,5.7,0.0,5.3,5.0,0.3425925925925926,0.44351851851851853,0.5796296296296296,2.0,20.0,False,0.0277777777777778,B,B,10.0,3.0,23.0,0.3264095,0.34718101,0.3264095,1.7,6.0,0.0,0.0,1.8,5.7,2.2,0.0,6.9,5.0,1.0,13.25,15.75,13.0,5.0,0.0,2.1,5.6,6.0,8.0,2.0,7.0,0.22037037037037036,0.3523148148148148,0.42037037037037045,,,1.0,2.0,,,2.0,,,,,3.0,8.0,,,4.0,,,0.0,,,
|
||||||
|
11390.0,Weavile,Pokemon Brilliant Stars,All-Star,R,0.0,0.33058,0.15978,0.50964,8.0,5.0,0.0,0.0,0.0,2.4,6.95,2.2,1.35,5.0,0.0,14.05,14.95,6.0,10.0,1.0,1.65,2.6,4.0,0.0,17.85,5.0,0.23981481481481481,0.3699074074074074,0.5537037037037037,14.0,17.0,True,0.333333333333333,C,D,18.0,3.0,23.0,0.33058,0.15978,0.50964,6.9,4.0,0.0,0.0,3.75,3.5,6.15,2.4,0.0,5.0,0.0,25.5,12.5,7.0,7.0,0.0,0.0,3.6,2.0,14.7,0.0,4.0,0.2518518518518518,0.487962962962963,0.5662037037037037,,,,,,,,3.0,,,,,,,,,6.0,,0.0,,,
|
||||||
|
11392.0,Purrloin,Pokemon Brilliant Stars,Starter,R,0.0,0.3372093,0.36821705,0.29457364,1.5,2.0,1.75,0.0,5.4,5.4,3.85,0.0,6.05,5.0,1.0,7.8,6.2,10.0,21.0,0.0,1.95,4.1,4.0,1.0,10.0,10.0,0.25416666666666665,0.33564814814814814,0.45601851851851855,15.0,18.0,True,0.333333333333333,C,B,17.0,2.0,23.0,0.3372093,0.36821705,0.29457364,2.0,6.0,0.0,0.0,5.4,5.4,4.6,0.0,9.2,5.0,2.0,7.05,12.95,6.0,18.0,0.0,1.8,1.6,2.0,7.0,3.0,9.0,0.2972222222222222,0.38101851851851853,0.5361111111111111,,,,,4.0,4.0,,,,,,,,25.0,88.0,,,,,,,
|
||||||
|
11393.0,Liepard,Pokemon Brilliant Stars,All-Star,R,0.0,0.31085,0.07331,0.61584,1.05,4.0,5.1,0.0,2.4,2.4,4.25,2.55,6.0,5.0,0.0,21.6,16.4,7.0,7.0,0.0,0.0,1.6,1.95,17.7,0.0,2.0,0.26157407407407407,0.4615740740740741,0.48518518518518516,15.0,19.0,True,0.416666666666667,C,B,17.0,2.0,23.0,0.31085,0.07331,0.61584,7.8,5.0,0.0,0.0,1.75,5.4,7.1,2.7,0.0,5.0,2.0,5.1,21.9,11.0,7.0,1.0,0.0,3.6,6.2,0.0,11.15,4.3,0.27546296296296297,0.34120370370370373,0.6277777777777778,,,,,4.0,4.0,,,,,,,,25.0,36.0,,,,,,,
|
||||||
|
11397.0,Morpeko V,Pokemon Brilliant Stars,All-Star,R,0.0,0.40322581,0.33870968,0.25806452,6.05,3.0,0.0,0.0,2.7,8.05,5.1,4.2,5.4,5.0,1.0,6.6,15.4,6.0,17.0,0.0,0.0,5.9,2.6,0.0,3.2,10.8,0.3287037037037037,0.3990740740740741,0.637962962962963,12.0,16.0,True,0.388888888888889,C,C,16.0,1.0,23.0,0.40322581,0.33870968,0.25806452,1.05,4.0,0.0,0.0,2.5,7.3,2.5,2.2,4.9,5.0,3.0,7.25,22.75,12.0,5.0,0.0,2.1,4.65,4.0,1.0,6.0,10.8,0.2310185185185185,0.32592592592592595,0.4064814814814815,,,,4.0,,4.0,,,,,,,28.0,,44.0,,,,,,,
|
||||||
|
11398.0,Aggron V,Pokemon Brilliant Stars,All-Star,L,0.0,0.24332,0.1632,0.59348,6.35,5.0,0.0,0.0,2.4,6.9,10.45,4.2,1.1,5.0,1.0,20.1,4.9,1.0,15.0,1.0,0.9,2.75,3.0,7.15,5.8,4.0,0.337037037037037,0.5324074074074074,0.6689814814814815,3.0,20.0,False,0.0,B,C,9.0,1.0,23.0,0.24332,0.1632,0.59348,1.7,8.0,0.0,0.0,3.2,2.5,4.75,6.8,2.25,5.0,0.0,16.05,10.95,9.0,7.0,0.0,2.75,2.5,2.3,19.25,0.0,4.0,0.2564814814814815,0.4050925925925926,0.4675925925925926,,1.0,,,,,,,3.0,,10.0,,,,,,,8.0,0.0,-4.0,6.0,16.0
|
||||||
|
11399.0,Aggron VMAX,Pokemon Brilliant Stars,MVP,L,0.0,0.21277,0.10372,0.68351,7.1,4.0,0.0,0.0,3.4,10.2,3.6,0.0,2.05,5.0,2.0,3.8,13.2,3.0,12.0,1.0,1.95,6.8,0.9,0.0,23.0,5.0,0.28564814814814815,0.33935185185185185,0.6643518518518519,3.0,20.0,False,0.0,B,C,9.0,1.0,23.0,0.21277,0.10372,0.68351,1.4,4.0,0.0,0.0,6.2,6.25,5.7,8.35,2.75,5.0,0.0,6.5,11.5,1.0,16.0,0.0,2.25,2.35,0.0,7.1,21.65,0.0,0.32546296296296295,0.38564814814814813,0.5351851851851852,,1.0,,,,,,,3.0,,6.0,,,,,,,8.0,0.0,-4.0,6.0,10.0
|
||||||
|
11400.0,Probopass,Pokemon Brilliant Stars,All-Star,R,0.0,0.36964981,0.41634241,0.21400778,5.4,2.0,1.9,0.0,4.9,4.6,3.2,0.0,1.35,5.0,0.0,23.95,15.05,14.0,4.0,1.0,1.65,1.0,2.0,0.0,12.0,5.0,0.2300925925925926,0.45185185185185184,0.5310185185185186,3.0,20.0,False,0.0,A,C,8.0,1.0,23.0,0.36964981,0.41634241,0.21400778,2.1,8.0,0.0,0.0,1.95,6.0,4.05,0.0,8.35,5.0,0.0,16.6,18.4,1.0,9.0,0.0,1.65,4.0,4.9,4.0,3.0,10.0,0.26805555555555555,0.4217592592592593,0.5111111111111111,,,2.0,,1.0,,,,,,,4.0,,8.0,,,,,,,,
|
||||||
|
11401.0,Heatran,Pokemon Brilliant Stars,Starter,R,0.0,0.19328,0.12605,0.68067,5.7,4.0,0.0,0.0,4.25,3.7,7.15,10.7,3.75,5.0,0.0,12.6,11.4,9.0,9.0,0.0,1.25,0.6,1.0,11.6,7.3,0.0,0.3680555555555556,0.4847222222222222,0.6555555555555556,3.0,20.0,False,0.0,B,A,11.0,1.0,23.0,0.19328,0.12605,0.68067,6.3,5.0,0.0,0.0,2.55,2.55,10.0,3.75,1.25,5.0,0.0,12.75,13.25,2.0,11.0,1.0,3.75,0.0,2.7,25.15,0.0,0.0,0.29074074074074074,0.40879629629629627,0.5824074074074074,,2.0,,,,,,,,,6.0,,,,,,,,,-2.0,3.0,6.0
|
||||||
|
11402.0,Escavalier,Pokemon Brilliant Stars,All-Star,R,0.0,0.2038,0.21196,0.58424,0.0,0.0,1.9,0.0,5.4,5.1,6.0,9.05,3.2,5.0,0.0,5.7,8.3,13.0,6.0,0.0,0.8,1.9,2.0,19.7,9.95,5.0,0.30694444444444446,0.3597222222222222,0.4393518518518518,3.0,20.0,False,0.0,C,C,5.0,1.0,23.0,0.2038,0.21196,0.58424,1.05,1.0,0.0,0.0,7.6,7.65,6.8,10.25,3.4,5.0,0.0,7.55,15.45,1.0,10.0,0.0,0.6,3.3,0.0,25.35,0.0,2.0,0.3680555555555556,0.43796296296296294,0.5523148148148148,,,,,2.0,,,,,,,,,10.0,,,,,,,,
|
||||||
|
11406.0,Gible,Pokemon Brilliant Stars,Starter,R,0.0,0.41666667,0.33333333,0.25,1.75,3.0,0.0,0.0,2.4,6.95,5.8,0.0,11.65,5.0,0.0,0.0,5.0,7.0,5.0,0.0,0.0,8.3,5.35,3.8,0.0,37.0,0.3013888888888889,0.3013888888888889,0.47824074074074074,3.0,20.0,False,0.0555555555555556,C,D,11.0,2.0,23.0,0.41666667,0.33333333,0.25,1.05,3.0,0.0,0.0,2.85,8.7,6.1,7.4,5.1,5.0,0.0,9.0,27.0,1.0,14.0,0.0,0.9,1.25,0.0,5.05,5.0,5.6,0.32592592592592595,0.40925925925925927,0.5037037037037037,,,,,,,3.0,3.0,3.0,,,,,,,8.0,4.0,8.0,-1.0,,,
|
||||||
|
11407.0,Gabite,Pokemon Brilliant Stars,All-Star,R,0.0,0.33333333,0.34567901,0.32098765,1.35,2.0,0.0,0.0,6.55,6.55,5.7,6.0,4.75,5.0,1.0,12.9,22.1,4.0,9.0,0.0,0.25,2.1,0.0,0.0,5.75,13.0,0.31851851851851853,0.44722222222222224,0.5050925925925925,8.0,15.0,True,0.333333333333333,C,D,15.0,2.0,23.0,0.33333333,0.34567901,0.32098765,1.05,3.0,0.0,0.0,2.4,7.35,6.7,5.0,8.4,5.0,1.0,17.0,18.0,5.0,9.0,0.0,0.6,1.6,2.0,0.0,3.9,11.0,0.32314814814814813,0.4898148148148148,0.4842592592592593,,,,,,,8.0,3.0,8.0,,,,,,,8.0,8.0,8.0,-2.0,,,
|
||||||
|
11408.0,Garchomp,Pokemon Brilliant Stars,MVP,R,0.0,0.26997,0.12672,0.60331,6.0,4.0,0.0,0.0,3.2,9.0,8.05,3.4,0.0,5.0,1.0,22.05,16.95,6.0,5.0,1.0,0.0,2.0,3.0,0.75,6.6,5.0,0.3162037037037037,0.5296296296296297,0.6513888888888889,10.0,15.0,True,0.333333333333333,C,D,13.0,2.0,23.0,0.26997,0.12672,0.60331,3.9,3.0,0.0,0.0,6.4,6.4,5.7,0.0,2.4,5.0,2.0,20.95,11.05,3.0,15.0,1.0,1.6,0.0,2.7,17.9,0.0,0.0,0.26666666666666666,0.4791666666666667,0.5351851851851852,,,,,,,3.0,3.0,3.0,,,,,,,8.0,4.0,8.0,-3.0,,,
|
||||||
|
11414.0,Farfetch'd,Pokemon Brilliant Stars,Starter,R,0.0,0.29443,0.19928,0.50629,0.0,0.0,3.5,0.0,5.4,5.1,5.4,8.0,2.7,5.0,0.0,3.75,6.25,16.0,8.0,0.0,0.3,0.9,1.0,0.0,36.7,0.0,0.30185185185185187,0.3365740740740741,0.4638888888888889,4.0,20.0,False,0.0833333333333333,C,C,13.0,2.0,23.0,0.29443,0.19928,0.50629,1.05,2.0,4.8,0.0,4.25,4.2,6.3,9.5,3.2,5.0,0.0,5.7,8.3,15.0,3.0,0.0,0.8,2.75,1.0,20.65,10.5,0.0,0.34074074074074073,0.39351851851851855,0.5648148148148148,,,,,,3.0,3.0,3.0,,,,,,,14.0,5.0,5.0,,0.0,,,
|
||||||
|
11415.0,Castform,Pokemon Brilliant Stars,Starter,R,0.0,0.22772,0.21386,0.55842,2.1,6.0,2.55,0.0,3.3,3.25,5.4,7.95,2.7,5.0,0.0,4.75,9.25,5.0,15.0,0.0,0.3,3.9,1.75,2.75,23.05,4.0,0.30324074074074076,0.3472222222222222,0.5527777777777778,3.0,12.0,True,0.25,C,A,13.0,3.0,23.0,0.22772,0.21386,0.55842,1.05,4.0,2.4,0.0,4.25,4.25,4.75,6.85,2.25,5.0,0.0,6.75,7.25,8.0,14.0,0.0,2.75,0.0,2.7,22.6,7.15,2.0,0.28055555555555556,0.34305555555555556,0.48842592592592593,,,1.0,1.0,,1.0,,,,,,2.0,6.0,,10.0,,,,,,,
|
||||||
|
11416.0,Starly,Pokemon Brilliant Stars,Starter,R,0.0,0.39130435,0.30434783,0.30434783,1.65,3.0,0.0,0.0,6.9,6.95,6.5,12.1,1.0,5.0,0.0,8.4,21.6,6.0,8.0,0.0,0.0,0.0,1.4,0.0,3.6,15.9,0.36203703703703705,0.4398148148148148,0.5777777777777777,14.0,17.0,True,0.333333333333333,C,D,18.0,1.0,23.0,0.39130435,0.30434783,0.30434783,1.05,1.0,1.6,0.0,3.2,9.65,3.2,0.0,5.1,5.0,0.0,8.5,22.5,5.0,11.0,0.0,0.9,3.3,4.0,0.0,8.0,15.0,0.24814814814814815,0.32685185185185184,0.4398148148148148,,,,,,5.0,,5.0,,,,,,,32.0,,12.0,,1.0,,,
|
||||||
|
11417.0,Staravia,Pokemon Brilliant Stars,All-Star,R,0.0,0.40821918,0.34520548,0.24657534,1.05,3.0,1.3,0.0,3.9,11.8,5.1,0.0,9.75,5.0,2.0,23.7,17.3,5.0,11.0,0.0,2.25,0.15,0.0,0.0,5.7,0.0,0.3416666666666667,0.5796296296296296,0.5819444444444445,14.0,18.0,True,0.444444444444444,C,D,17.0,1.0,23.0,0.40821918,0.34520548,0.24657534,1.4,3.0,0.0,0.0,2.4,6.8,5.7,0.0,11.4,5.0,1.0,9.2,8.8,6.0,17.0,0.0,0.6,4.8,3.0,19.9,0.0,2.0,0.2935185185185185,0.38796296296296295,0.45925925925925926,,,,,,4.0,,4.0,,,,,,,32.0,,12.0,,1.0,,,
|
||||||
|
11418.0,Staraptor,Pokemon Brilliant Stars,MVP,R,0.0,0.27103,0.09969,0.62928,8.0,6.0,0.0,0.0,2.4,2.4,15.55,2.4,5.4,5.0,0.0,19.95,7.05,12.0,4.0,0.0,0.6,1.6,0.0,0.0,11.65,4.0,0.38564814814814813,0.5703703703703704,0.7356481481481482,13.0,17.0,True,0.333333333333333,C,D,15.0,1.0,23.0,0.27103,0.09969,0.62928,4.5,3.0,3.2,0.0,2.25,6.7,3.55,0.0,1.95,5.0,1.0,22.3,7.7,5.0,12.0,1.0,1.05,3.3,4.5,20.0,0.0,0.0,0.24212962962962964,0.45787037037037037,0.5509259259259259,,,,,,3.0,,4.0,,,,,,,25.0,,12.0,,1.0,,,
|
||||||
|
11419.0,Bidoof,Pokemon Brilliant Stars,Starter,R,0.0,0.39,0.375,0.235,5.95,4.0,0.0,0.0,1.6,4.75,4.2,2.85,5.4,5.0,1.0,14.9,10.1,3.0,20.0,0.0,0.6,4.3,3.0,0.0,7.2,10.15,0.2708333333333333,0.41805555555555557,0.5504629629629629,3.0,20.0,False,0.0,C,C,10.0,2.0,23.0,0.39,0.375,0.235,2.1,6.0,0.0,0.0,1.8,5.4,3.4,0.0,6.75,5.0,0.0,13.1,20.9,6.0,11.0,0.0,1.25,3.9,1.6,15.8,1.0,3.0,0.2310185185185185,0.3523148148148148,0.4393518518518518,,4.0,4.0,,,,,,,,3.0,5.0,,,,,,,,-1.0,6.0,7.0
|
||||||
|
11420.0,Bibarel,Pokemon Brilliant Stars,All-Star,R,0.0,0.21277,0.10372,0.68351,7.1,4.0,0.0,0.0,3.4,10.2,3.6,0.0,2.05,5.0,2.0,3.8,13.2,3.0,12.0,1.0,1.95,6.8,0.9,0.0,23.0,5.0,0.28564814814814815,0.33935185185185185,0.6643518518518519,3.0,12.0,False,0.111111111111111,C,D,13.0,2.0,23.0,0.21277,0.10372,0.68351,1.4,4.0,0.0,0.0,6.2,6.25,5.7,8.35,2.75,5.0,0.0,6.5,11.5,1.0,16.0,0.0,2.25,2.35,0.0,7.1,21.65,0.0,0.32546296296296295,0.38564814814814813,0.5351851851851852,,4.0,3.0,,,,,,,,3.0,5.0,,,,,,,,-1.0,6.0,7.0
|
||||||
|
11421.0,Minccino,Pokemon Brilliant Stars,Starter,L,0.0,0.32664756,0.35243553,0.32091691,2.4,6.0,0.0,0.0,2.1,6.2,3.9,2.7,6.0,5.0,0.0,16.1,15.9,11.0,9.0,0.0,0.0,4.4,3.0,0.0,5.0,9.3,0.26666666666666666,0.41574074074074074,0.4935185185185185,13.0,18.0,True,0.444444444444444,C,D,18.0,2.0,23.0,0.32664756,0.35243553,0.32091691,1.05,3.0,0.0,0.0,2.25,6.8,5.1,0.0,9.85,5.0,0.0,12.2,13.8,5.0,11.0,0.0,0.15,5.15,5.0,1.65,5.0,16.0,0.2689814814814815,0.3819444444444444,0.4236111111111111,,,,,,5.0,,,,,,,,,25.0,,,,,,,
|
||||||
|
11422.0,Cinccino,Pokemon Brilliant Stars,All-Star,L,0.0,0.31056,0.19255,0.49689,6.05,4.0,2.25,0.0,2.5,7.6,5.25,0.0,2.4,5.0,8.0,4.75,26.25,1.0,4.0,1.0,1.6,2.35,3.0,4.0,7.0,10.0,0.2828703703703704,0.4009259259259259,0.6416666666666667,15.0,19.0,True,0.444444444444444,C,C,18.0,2.0,23.0,0.31056,0.19255,0.49689,4.8,3.0,1.9,0.0,4.8,4.75,3.6,0.0,1.75,5.0,2.0,9.9,9.1,19.0,6.0,1.0,3.25,1.45,0.0,2.7,19.0,5.0,0.23703703703703705,0.3472222222222222,0.5356481481481481,,,,,,5.0,,,,,,,,,20.0,,,,,,,
|
||||||
|
11424.0,Hawlucha,Pokemon Brilliant Stars,Starter,R,0.0,0.22772,0.21386,0.55842,2.1,6.0,2.55,0.0,3.3,3.25,5.4,7.95,2.7,5.0,0.0,4.75,9.25,5.0,15.0,0.0,0.3,3.9,1.75,2.75,23.05,4.0,0.30324074074074076,0.3472222222222222,0.5527777777777778,15.0,19.0,True,0.527777777777778,C,C,17.0,1.0,23.0,0.22772,0.21386,0.55842,1.05,4.0,2.4,0.0,4.25,4.25,4.75,6.85,2.25,5.0,0.0,6.75,7.25,8.0,14.0,0.0,2.75,0.0,2.7,22.6,7.15,2.0,0.28055555555555556,0.34305555555555556,0.48842592592592593,,,,4.0,4.0,4.0,,,,,,,22.0,28.0,44.0,,,,,,,
|
||||||
|
11426.0,Shaymin V,Pokemon Brilliant Stars,MVP,R,0.0,0.26705,0.18466,0.54829,0.0,2.0,0.0,0.0,11.05,11.05,8.35,12.55,4.25,5.0,3.0,3.2,11.8,12.0,0.0,0.0,0.75,0.0,1.95,0.0,17.05,4.0,0.4699074074074074,0.5273148148148148,0.7023148148148148,12.0,16.0,True,0.333333333333333,C,B,16.0,1.0,23.0,0.26705,0.18466,0.54829,0.0,1.0,6.8,0.0,4.75,4.5,6.8,10.2,3.4,5.0,0.0,5.75,12.25,4.0,17.0,0.0,0.6,0.5,2.0,3.65,19.8,0.0,0.36527777777777776,0.4185185185185185,0.5907407407407408,,,,4.0,4.0,5.0,,,,,,,28.0,28.0,20.0,,,,,,,
|
||||||
|
11428.0,Lumineon V,Pokemon Brilliant Stars,All-Star,R,0.0,0.36538462,0.23076923,0.40384615,2.4,5.0,0.0,0.0,6.4,19.25,8.7,0.0,4.5,5.0,0.0,14.35,18.65,5.0,10.0,1.0,0.0,1.35,0.5,0.0,0.9,5.0,0.42824074074074076,0.5611111111111111,0.8018518518518518,8.0,16.0,False,0.222222222222222,C,D,15.0,2.0,23.0,0.36538462,0.23076923,0.40384615,2.6,9.0,0.0,0.0,3.6,10.75,13.8,0.0,7.0,5.0,10.0,13.05,12.95,6.0,2.0,1.0,0.0,1.65,5.0,0.0,2.6,2.0,0.41435185185185186,0.6277777777777778,0.7444444444444445,,,,,3.0,,,,,,,,,10.0,,,,,,,,
|
||||||
|
11432.0,Whimsicott V,Pokemon Brilliant Stars,MVP,L,0.0,0.32467532,0.38095238,0.29437229,2.25,7.0,0.0,0.0,2.25,6.9,6.0,0.0,12.05,5.0,3.0,12.1,19.9,6.0,3.0,0.0,1.95,4.85,4.0,0.0,7.75,4.0,0.3282407407407407,0.46805555555555556,0.5726851851851852,11.0,16.0,True,0.5,B,C,18.0,3.0,23.0,0.32467532,0.38095238,0.29437229,1.75,5.0,0.0,0.0,4.2,12.2,4.75,0.0,9.4,5.0,5.0,8.3,7.7,10.0,3.0,0.0,0.6,3.05,3.0,5.05,6.0,14.0,0.3453703703703704,0.4685185185185185,0.6152777777777778,,,,2.0,,,,,,,,,12.0,,,,,,,,,
|
||||||
|
11434.0,Zamazenta V,Pokemon Brilliant Stars,MVP,S,0.0,0.4,0.36140351,0.23859649,4.7,6.0,0.0,0.0,6.25,6.25,14.5,5.7,3.8,5.0,0.0,2.6,1.4,5.0,30.0,0.0,0.2,4.75,5.3,0.0,1.25,5.3,0.4324074074074074,0.4564814814814815,0.7620370370370371,8.0,14.0,True,0.25,B,D,14.0,1.0,23.0,0.4,0.36140351,0.23859649,2.9,5.0,1.2,0.0,4.25,4.25,9.5,14.1,9.4,5.0,0.0,3.0,0.0,3.0,27.0,0.0,0.6,4.85,0.0,1.05,4.0,8.9,0.4685185185185185,0.4962962962962963,0.7194444444444444,,,,,1.0,,,,,,,,,8.0,,,,,,,,
|
||||||
|
11435.0,Flygon V,Pokemon Brilliant Stars,MVP,L,0.0,0.33929,0.23214,0.42857,4.25,2.0,0.0,0.0,5.8,5.75,3.25,3.2,3.2,5.0,8.0,12.9,14.1,14.0,2.0,0.0,0.8,1.0,0.0,0.0,17.75,5.0,0.26805555555555555,0.4615740740740741,0.5208333333333334,3.0,15.0,False,0.111111111111111,C,D,15.0,1.0,23.0,0.33929,0.23214,0.42857,4.8,3.0,0.0,0.0,5.8,5.85,5.4,0.0,2.55,5.0,0.0,10.5,24.5,17.0,0.0,1.0,0.45,1.35,1.0,0.0,15.8,4.0,0.26296296296296295,0.36018518518518516,0.5458333333333333,,,,,,,,,4.0,,,,,,,,,8.0,0.0,,,
|
||||||
|
11436.0,Arceus V,Pokemon Brilliant Stars,MVP,S,0.0,0.48160535,0.3277592,0.19063545,9.8,5.0,0.0,0.0,1.4,4.5,7.0,0.0,3.5,5.0,0.0,19.3,18.7,7.0,3.0,1.0,1.5,3.5,5.2,8.6,4.0,0.0,0.28888888888888886,0.4675925925925926,0.6851851851851852,3.0,15.0,True,0.25,C,A,13.0,2.0,23.0,0.48160535,0.3277592,0.19063545,8.3,4.0,0.0,0.0,2.8,8.55,7.2,0.0,3.9,5.0,0.0,19.0,17.0,3.0,10.0,1.0,2.1,2.15,5.0,0.0,5.0,4.0,0.3263888888888889,0.5023148148148148,0.7175925925925926,,1.0,1.0,,,,1.0,1.0,1.0,,0.0,0.0,,,,0.0,0.0,0.0,-3.0,-3.0,0.0,0.0
|
||||||
|
11437.0,Shaymin VSTAR,Pokemon Brilliant Stars,Hall of Fame,R,0.0,0.496240601503759,0.25062656641604,0.253132832080201,7.1,5.0,0.0,0.0,2.25,6.7,10.65,0.0,5.0,5.0,0.0,7.0,6.0,10.0,18.0,1.0,0.0,1.2,2.0,2.1,17.0,2.0,0.3398148148148148,0.4046296296296296,0.6893518518518519,14.0,17.0,True,0.555555555555556,C,B,16.0,1.0,23.0,0.496240601503759,0.25062656641604,0.253132832080201,10.1,7.0,0.0,0.0,1.05,3.1,12.2,2.1,4.0,5.0,0.0,19.3,13.7,6.0,0.0,0.0,0.0,3.9,5.9,5.75,0.0,8.9,0.35694444444444445,0.5356481481481481,0.7731481481481481,,,,3.0,3.0,4.0,,,,,,,28.0,28.0,20.0,,,,,,,
|
||||||
|
11439.0,Whimsicott VSTAR,Pokemon Brilliant Stars,Hall of Fame,L,0.0,0.40641711,0.34491979,0.2486631,8.85,5.0,0.0,0.0,0.0,3.75,5.4,0.0,10.1,5.0,0.0,20.2,8.8,5.0,1.0,0.0,0.9,3.4,2.0,0.6,10.0,18.0,0.30648148148148147,0.4935185185185185,0.6564814814814814,14.0,18.0,True,0.833333333333333,B,C,18.0,2.0,23.0,0.40641711,0.34491979,0.2486631,8.35,5.0,0.0,0.0,2.4,6.85,8.85,0.0,4.5,5.0,1.0,15.0,10.0,10.0,0.0,1.0,0.0,7.3,5.0,15.75,0.0,2.0,0.33287037037037037,0.4810185185185185,0.7199074074074074,,,,2.0,,,,,,,,,12.0,,,,,,,,,
|
||||||
|
11440.0,Galarian Articuno V,Pokemon Brilliant Stars,MVP,R,0.0,0.45959596,0.31313131,0.22727273,12.65,7.0,0.0,0.0,0.0,2.5,5.7,0.0,2.6,5.0,0.0,19.25,23.75,2.0,0.0,1.0,0.0,9.25,5.0,2.3,3.0,7.0,0.2726851851851852,0.45092592592592595,0.7444444444444445,3.0,15.0,False,0.111111111111111,B,A,13.0,1.0,23.0,0.45959596,0.31313131,0.22727273,9.25,5.0,0.0,0.0,1.9,5.7,5.0,0.0,2.5,5.0,0.0,25.95,23.05,1.0,5.0,1.0,0.0,6.55,4.0,0.0,7.1,0.0,0.27175925925925926,0.5120370370370371,0.6685185185185185,,,,3.0,,,4.0,,,,,,12.0,,,6.0,,,0.0,,,
|
||||||
|
11441.0,Galarian Zapdos V,Pokemon Brilliant Stars,MVP,R,0.0,0.37444934,0.38105727,0.24449339,6.95,4.0,0.0,0.0,2.4,7.1,10.2,0.0,5.1,5.0,0.0,17.5,11.5,5.0,2.0,1.0,0.0,4.95,2.9,5.4,9.0,8.0,0.33564814814814814,0.4976851851851852,0.6722222222222223,3.0,20.0,False,0.111111111111111,C,D,13.0,1.0,23.0,0.37444934,0.38105727,0.24449339,7.2,4.0,0.0,0.0,2.4,7.0,11.65,0.0,5.8,5.0,1.0,14.2,6.8,15.0,6.0,0.0,1.2,3.8,3.0,4.95,5.0,4.0,0.35694444444444445,0.4976851851851852,0.6995370370370371,,,,,,3.0,,3.0,,,,,,,18.0,,6.0,,0.0,,,
|
||||||
|
11442.0,Galarian Moltres V,Pokemon Brilliant Stars,MVP,R,0.0,0.40465116,0.33023256,0.26511628,7.65,4.0,0.0,0.0,3.5,10.65,6.15,0.0,3.2,5.0,0.0,20.65,12.35,6.0,2.0,1.0,0.8,4.7,3.0,0.0,5.35,12.0,0.3300925925925926,0.5212962962962963,0.7291666666666666,3.0,15.0,False,0.111111111111111,B,B,12.0,1.0,23.0,0.40465116,0.33023256,0.26511628,9.05,6.0,0.0,0.0,2.1,6.0,3.9,0.0,4.8,5.0,1.0,12.6,13.4,9.0,6.0,0.0,1.2,5.95,4.0,0.0,3.0,15.0,0.2902777777777778,0.4162037037037037,0.7,,,,,3.0,,,,3.0,,,,,0.0,,,,3.0,0.0,,,
|
||||||
|
11443.0,Arceus VSTAR,Pokemon Brilliant Stars,Hall of Fame,S,0.0,0.566084788029925,0.249376558603491,0.184538653366584,9.55,7.0,3.05,0.0,2.35,6.85,8.65,1.2,3.0,5.0,0.0,15.75,7.25,1.0,15.0,1.0,0.0,0.0,0.6,6.95,13.8,0.0,0.3763888888888889,0.5222222222222223,0.8805555555555555,3.0,18.0,True,0.444444444444444,C,A,13.0,1.0,23.0,0.566084788029925,0.249376558603491,0.184538653366584,8.65,6.0,0.0,0.0,2.7,8.15,10.8,0.0,5.0,5.0,5.0,16.4,5.6,3.0,6.0,1.0,0.0,0.2,3.0,0.0,0.5,21.0,0.37777777777777777,0.575925925925926,0.8018518518518518,,1.0,1.0,,,,1.0,1.0,1.0,,0.0,0.0,,,,0.0,0.0,0.0,-3.0,-3.0,0.0,0.0
|
||||||
11316.0,Exeggutor,Pokemon Brilliant Stars,All-Star,L,0.0,0.24332,0.1632,0.59348,6.35,5.0,0.0,0.0,2.4,6.9,10.45,4.2,1.1,5.0,1.0,20.1,4.9,1.0,15.0,1.0,0.9,2.75,3.0,7.15,5.8,4.0,0.337037037037037,0.5324074074074074,0.6689814814814815,3.0,20.0,False,0.0,C,A,9.0,3.0,23.0,0.24332,0.1632,0.59348,1.7,8.0,0.0,0.0,3.2,2.5,4.75,6.8,2.25,5.0,0.0,16.05,10.95,9.0,7.0,0.0,2.75,2.5,2.3,19.25,0.0,4.0,0.2564814814814815,0.4050925925925926,0.4675925925925926,,,4.0,,,,4.0,,,,,15.0,,,,10.0,,,0.0,,,
|
11316.0,Exeggutor,Pokemon Brilliant Stars,All-Star,L,0.0,0.24332,0.1632,0.59348,6.35,5.0,0.0,0.0,2.4,6.9,10.45,4.2,1.1,5.0,1.0,20.1,4.9,1.0,15.0,1.0,0.9,2.75,3.0,7.15,5.8,4.0,0.337037037037037,0.5324074074074074,0.6689814814814815,3.0,20.0,False,0.0,C,A,9.0,3.0,23.0,0.24332,0.1632,0.59348,1.7,8.0,0.0,0.0,3.2,2.5,4.75,6.8,2.25,5.0,0.0,16.05,10.95,9.0,7.0,0.0,2.75,2.5,2.3,19.25,0.0,4.0,0.2564814814814815,0.4050925925925926,0.4675925925925926,,,4.0,,,,4.0,,,,,15.0,,,,10.0,,,0.0,,,
|
||||||
11317.0,Shroomish,Pokemon Brilliant Stars,Starter,R,0.0,0.46391753,0.29896907,0.2371134,2.1,6.0,0.0,0.0,3.0,9.0,7.25,3.0,12.2,5.0,0.0,9.75,6.25,13.0,5.0,0.0,1.8,2.9,2.0,0.75,5.0,14.0,0.38935185185185184,0.47962962962962963,0.6421296296296296,2.0,20.0,False,0.0277777777777778,B,C,10.0,1.0,23.0,0.46391753,0.29896907,0.2371134,1.65,4.0,0.0,0.0,2.1,6.3,5.7,0.0,2.8,5.0,0.0,12.25,23.75,8.0,3.0,1.0,1.2,4.05,2.0,2.2,23.0,0.0,0.21342592592592594,0.32685185185185184,0.3925925925925926,,,,,,,1.0,2.0,2.0,,,,,,,1.0,1.0,1.0,-2.0,,,
|
11317.0,Shroomish,Pokemon Brilliant Stars,Starter,R,0.0,0.46391753,0.29896907,0.2371134,2.1,6.0,0.0,0.0,3.0,9.0,7.25,3.0,12.2,5.0,0.0,9.75,6.25,13.0,5.0,0.0,1.8,2.9,2.0,0.75,5.0,14.0,0.38935185185185184,0.47962962962962963,0.6421296296296296,2.0,20.0,False,0.0277777777777778,B,C,10.0,1.0,23.0,0.46391753,0.29896907,0.2371134,1.65,4.0,0.0,0.0,2.1,6.3,5.7,0.0,2.8,5.0,0.0,12.25,23.75,8.0,3.0,1.0,1.2,4.05,2.0,2.2,23.0,0.0,0.21342592592592594,0.32685185185185184,0.3925925925925926,,,,,,,1.0,2.0,2.0,,,,,,,1.0,1.0,1.0,-2.0,,,
|
||||||
11318.0,Breloom,Pokemon Brilliant Stars,All-Star,R,0.0,0.31683,0.17822,0.50495,7.4,5.0,0.0,0.0,3.2,2.5,14.8,5.7,1.7,5.0,9.0,5.4,12.6,3.0,8.0,1.0,0.3,0.0,1.1,0.0,22.3,0.0,0.3731481481481482,0.5064814814814815,0.700925925925926,2.0,20.0,False,0.0277777777777778,C,D,12.0,1.0,23.0,0.31683,0.17822,0.50495,0.0,0.0,0.0,0.0,5.1,5.1,6.1,5.75,6.4,5.0,0.0,12.8,6.2,7.0,20.0,0.0,0.6,1.9,1.0,0.0,21.05,4.0,0.2865740740740741,0.4050925925925926,0.38101851851851853,,,,,,,2.0,4.0,3.0,,,,,,,6.0,6.0,6.0,-1.0,,,
|
11318.0,Breloom,Pokemon Brilliant Stars,All-Star,R,0.0,0.31683,0.17822,0.50495,7.4,5.0,0.0,0.0,3.2,2.5,14.8,5.7,1.7,5.0,9.0,5.4,12.6,3.0,8.0,1.0,0.3,0.0,1.1,0.0,22.3,0.0,0.3731481481481482,0.5064814814814815,0.700925925925926,2.0,20.0,False,0.0277777777777778,C,D,12.0,1.0,23.0,0.31683,0.17822,0.50495,0.0,0.0,0.0,0.0,5.1,5.1,6.1,5.75,6.4,5.0,0.0,12.8,6.2,7.0,20.0,0.0,0.6,1.9,1.0,0.0,21.05,4.0,0.2865740740740741,0.4050925925925926,0.38101851851851853,,,,,,,2.0,4.0,3.0,,,,,,,6.0,6.0,6.0,-1.0,,,
|
||||||
@ -5237,40 +5261,6 @@ player_id,player_name,cardset_name,rarity,hand,variant,pull_rate_vl,center_rate_
|
|||||||
11387.0,Grimer,Pokemon Brilliant Stars,Starter,L,0.0,0.29230769,0.35384615,0.35384615,1.05,2.0,0.0,0.0,4.2,12.2,6.3,0.0,12.65,5.0,0.0,5.4,11.6,7.0,20.0,0.0,1.35,3.75,3.0,0.0,3.5,9.0,0.36944444444444446,0.41944444444444445,0.5782407407407407,3.0,20.0,False,0.0,C,C,8.0,2.0,23.0,0.29230769,0.35384615,0.35384615,1.2,1.0,0.0,0.0,2.65,7.9,4.35,0.0,8.9,5.0,2.0,8.95,18.05,8.0,10.0,0.0,2.1,1.9,2.0,1.0,8.0,15.0,0.25925925925925924,0.36064814814814816,0.4041666666666667,,,3.0,3.0,4.0,,,,,,,12.0,14.0,18.0,,,,,,,,
|
11387.0,Grimer,Pokemon Brilliant Stars,Starter,L,0.0,0.29230769,0.35384615,0.35384615,1.05,2.0,0.0,0.0,4.2,12.2,6.3,0.0,12.65,5.0,0.0,5.4,11.6,7.0,20.0,0.0,1.35,3.75,3.0,0.0,3.5,9.0,0.36944444444444446,0.41944444444444445,0.5782407407407407,3.0,20.0,False,0.0,C,C,8.0,2.0,23.0,0.29230769,0.35384615,0.35384615,1.2,1.0,0.0,0.0,2.65,7.9,4.35,0.0,8.9,5.0,2.0,8.95,18.05,8.0,10.0,0.0,2.1,1.9,2.0,1.0,8.0,15.0,0.25925925925925924,0.36064814814814816,0.4041666666666667,,,3.0,3.0,4.0,,,,,,,12.0,14.0,18.0,,,,,,,,
|
||||||
11388.0,Muk,Pokemon Brilliant Stars,All-Star,L,0.0,0.26361,0.149,0.58739,7.9,5.0,2.7,0.0,2.7,7.9,7.95,3.2,0.0,5.0,0.0,2.8,6.2,3.0,19.0,1.0,0.0,6.1,6.1,0.0,16.45,5.0,0.3458333333333333,0.37175925925925923,0.7828703703703703,3.0,20.0,False,0.0,C,C,9.0,2.0,23.0,0.26361,0.149,0.58739,5.95,4.0,0.0,0.0,2.5,7.4,5.7,0.0,2.7,5.0,1.0,6.4,7.6,8.0,6.0,1.0,3.3,1.65,4.0,21.8,9.0,5.0,0.2662037037037037,0.3347222222222222,0.5787037037037037,,,3.0,,4.0,,,,,,,12.0,,18.0,,,,,,,,
|
11388.0,Muk,Pokemon Brilliant Stars,All-Star,L,0.0,0.26361,0.149,0.58739,7.9,5.0,2.7,0.0,2.7,7.9,7.95,3.2,0.0,5.0,0.0,2.8,6.2,3.0,19.0,1.0,0.0,6.1,6.1,0.0,16.45,5.0,0.3458333333333333,0.37175925925925923,0.7828703703703703,3.0,20.0,False,0.0,C,C,9.0,2.0,23.0,0.26361,0.149,0.58739,5.95,4.0,0.0,0.0,2.5,7.4,5.7,0.0,2.7,5.0,1.0,6.4,7.6,8.0,6.0,1.0,3.3,1.65,4.0,21.8,9.0,5.0,0.2662037037037037,0.3347222222222222,0.5787037037037037,,,3.0,,4.0,,,,,,,12.0,,18.0,,,,,,,,
|
||||||
11389.0,Sneasel,Pokemon Brilliant Stars,Starter,R,0.0,0.33514986,0.34332425,0.32152589,1.25,3.0,0.0,0.0,3.4,10.35,3.9,0.0,7.85,5.0,1.0,7.3,12.7,12.0,6.0,0.0,0.15,5.4,4.0,24.7,0.0,0.0,0.2847222222222222,0.36157407407407405,0.48842592592592593,15.0,18.0,True,0.416666666666667,C,D,19.0,3.0,23.0,0.33514986,0.34332425,0.32152589,1.95,5.0,0.0,0.0,2.1,6.25,5.7,3.2,7.75,5.0,1.0,6.0,16.0,18.0,0.0,0.0,0.25,2.8,3.0,23.2,0.8,0.0,0.29583333333333334,0.36064814814814816,0.49675925925925923,,,,,,3.0,,3.0,,,,,,,10.0,,6.0,,0.0,,,
|
11389.0,Sneasel,Pokemon Brilliant Stars,Starter,R,0.0,0.33514986,0.34332425,0.32152589,1.25,3.0,0.0,0.0,3.4,10.35,3.9,0.0,7.85,5.0,1.0,7.3,12.7,12.0,6.0,0.0,0.15,5.4,4.0,24.7,0.0,0.0,0.2847222222222222,0.36157407407407405,0.48842592592592593,15.0,18.0,True,0.416666666666667,C,D,19.0,3.0,23.0,0.33514986,0.34332425,0.32152589,1.95,5.0,0.0,0.0,2.1,6.25,5.7,3.2,7.75,5.0,1.0,6.0,16.0,18.0,0.0,0.0,0.25,2.8,3.0,23.2,0.8,0.0,0.29583333333333334,0.36064814814814816,0.49675925925925923,,,,,,3.0,,3.0,,,,,,,10.0,,6.0,,0.0,,,
|
||||||
11390.0,Weavile,Pokemon Brilliant Stars,All-Star,R,0.0,0.33058,0.15978,0.50964,8.0,5.0,0.0,0.0,0.0,2.4,6.95,2.2,1.35,5.0,0.0,14.05,14.95,6.0,10.0,1.0,1.65,2.6,4.0,0.0,17.85,5.0,0.23981481481481481,0.3699074074074074,0.5537037037037037,14.0,17.0,True,0.333333333333333,C,D,18.0,3.0,23.0,0.33058,0.15978,0.50964,6.9,4.0,0.0,0.0,3.75,3.5,6.15,2.4,0.0,5.0,0.0,25.5,12.5,7.0,7.0,0.0,0.0,3.6,2.0,14.7,0.0,4.0,0.2518518518518518,0.487962962962963,0.5662037037037037,,,,,,,,3.0,,,,,,,,,6.0,,0.0,,,
|
|
||||||
11392.0,Purrloin,Pokemon Brilliant Stars,Starter,R,0.0,0.3372093,0.36821705,0.29457364,1.5,2.0,1.75,0.0,5.4,5.4,3.85,0.0,6.05,5.0,1.0,7.8,6.2,10.0,21.0,0.0,1.95,4.1,4.0,1.0,10.0,10.0,0.25416666666666665,0.33564814814814814,0.45601851851851855,15.0,18.0,True,0.333333333333333,C,B,17.0,2.0,23.0,0.3372093,0.36821705,0.29457364,2.0,6.0,0.0,0.0,5.4,5.4,4.6,0.0,9.2,5.0,2.0,7.05,12.95,6.0,18.0,0.0,1.8,1.6,2.0,7.0,3.0,9.0,0.2972222222222222,0.38101851851851853,0.5361111111111111,,,,,4.0,4.0,,,,,,,,25.0,88.0,,,,,,,
|
|
||||||
11393.0,Liepard,Pokemon Brilliant Stars,All-Star,R,0.0,0.31085,0.07331,0.61584,1.05,4.0,5.1,0.0,2.4,2.4,4.25,2.55,6.0,5.0,0.0,21.6,16.4,7.0,7.0,0.0,0.0,1.6,1.95,17.7,0.0,2.0,0.26157407407407407,0.4615740740740741,0.48518518518518516,15.0,19.0,True,0.416666666666667,C,B,17.0,2.0,23.0,0.31085,0.07331,0.61584,7.8,5.0,0.0,0.0,1.75,5.4,7.1,2.7,0.0,5.0,2.0,5.1,21.9,11.0,7.0,1.0,0.0,3.6,6.2,0.0,11.15,4.3,0.27546296296296297,0.34120370370370373,0.6277777777777778,,,,,4.0,4.0,,,,,,,,25.0,36.0,,,,,,,
|
|
||||||
11397.0,Morpeko V,Pokemon Brilliant Stars,All-Star,R,0.0,0.40322581,0.33870968,0.25806452,6.05,3.0,0.0,0.0,2.7,8.05,5.1,4.2,5.4,5.0,1.0,6.6,15.4,6.0,17.0,0.0,0.0,5.9,2.6,0.0,3.2,10.8,0.3287037037037037,0.3990740740740741,0.637962962962963,12.0,16.0,True,0.388888888888889,C,C,16.0,1.0,23.0,0.40322581,0.33870968,0.25806452,1.05,4.0,0.0,0.0,2.5,7.3,2.5,2.2,4.9,5.0,3.0,7.25,22.75,12.0,5.0,0.0,2.1,4.65,4.0,1.0,6.0,10.8,0.2310185185185185,0.32592592592592595,0.4064814814814815,,,,4.0,,4.0,,,,,,,28.0,,44.0,,,,,,,
|
|
||||||
11398.0,Aggron V,Pokemon Brilliant Stars,All-Star,L,0.0,0.24332,0.1632,0.59348,6.35,5.0,0.0,0.0,2.4,6.9,10.45,4.2,1.1,5.0,1.0,20.1,4.9,1.0,15.0,1.0,0.9,2.75,3.0,7.15,5.8,4.0,0.337037037037037,0.5324074074074074,0.6689814814814815,3.0,20.0,False,0.0,B,C,9.0,1.0,23.0,0.24332,0.1632,0.59348,1.7,8.0,0.0,0.0,3.2,2.5,4.75,6.8,2.25,5.0,0.0,16.05,10.95,9.0,7.0,0.0,2.75,2.5,2.3,19.25,0.0,4.0,0.2564814814814815,0.4050925925925926,0.4675925925925926,,1.0,,,,,,,3.0,,10.0,,,,,,,8.0,0.0,-4.0,6.0,16.0
|
|
||||||
11399.0,Aggron VMAX,Pokemon Brilliant Stars,MVP,L,0.0,0.21277,0.10372,0.68351,7.1,4.0,0.0,0.0,3.4,10.2,3.6,0.0,2.05,5.0,2.0,3.8,13.2,3.0,12.0,1.0,1.95,6.8,0.9,0.0,23.0,5.0,0.28564814814814815,0.33935185185185185,0.6643518518518519,3.0,20.0,False,0.0,B,C,9.0,1.0,23.0,0.21277,0.10372,0.68351,1.4,4.0,0.0,0.0,6.2,6.25,5.7,8.35,2.75,5.0,0.0,6.5,11.5,1.0,16.0,0.0,2.25,2.35,0.0,7.1,21.65,0.0,0.32546296296296295,0.38564814814814813,0.5351851851851852,,1.0,,,,,,,3.0,,6.0,,,,,,,8.0,0.0,-4.0,6.0,10.0
|
|
||||||
11400.0,Probopass,Pokemon Brilliant Stars,All-Star,R,0.0,0.36964981,0.41634241,0.21400778,5.4,2.0,1.9,0.0,4.9,4.6,3.2,0.0,1.35,5.0,0.0,23.95,15.05,14.0,4.0,1.0,1.65,1.0,2.0,0.0,12.0,5.0,0.2300925925925926,0.45185185185185184,0.5310185185185186,3.0,20.0,False,0.0,A,C,8.0,1.0,23.0,0.36964981,0.41634241,0.21400778,2.1,8.0,0.0,0.0,1.95,6.0,4.05,0.0,8.35,5.0,0.0,16.6,18.4,1.0,9.0,0.0,1.65,4.0,4.9,4.0,3.0,10.0,0.26805555555555555,0.4217592592592593,0.5111111111111111,,,2.0,,1.0,,,,,,,4.0,,8.0,,,,,,,,
|
|
||||||
11401.0,Heatran,Pokemon Brilliant Stars,Starter,R,0.0,0.19328,0.12605,0.68067,5.7,4.0,0.0,0.0,4.25,3.7,7.15,10.7,3.75,5.0,0.0,12.6,11.4,9.0,9.0,0.0,1.25,0.6,1.0,11.6,7.3,0.0,0.3680555555555556,0.4847222222222222,0.6555555555555556,3.0,20.0,False,0.0,B,A,11.0,1.0,23.0,0.19328,0.12605,0.68067,6.3,5.0,0.0,0.0,2.55,2.55,10.0,3.75,1.25,5.0,0.0,12.75,13.25,2.0,11.0,1.0,3.75,0.0,2.7,25.15,0.0,0.0,0.29074074074074074,0.40879629629629627,0.5824074074074074,,2.0,,,,,,,,,6.0,,,,,,,,,-2.0,3.0,6.0
|
|
||||||
11402.0,Escavalier,Pokemon Brilliant Stars,All-Star,R,0.0,0.2038,0.21196,0.58424,0.0,0.0,1.9,0.0,5.4,5.1,6.0,9.05,3.2,5.0,0.0,5.7,8.3,13.0,6.0,0.0,0.8,1.9,2.0,19.7,9.95,5.0,0.30694444444444446,0.3597222222222222,0.4393518518518518,3.0,20.0,False,0.0,C,C,5.0,1.0,23.0,0.2038,0.21196,0.58424,1.05,1.0,0.0,0.0,7.6,7.65,6.8,10.25,3.4,5.0,0.0,7.55,15.45,1.0,10.0,0.0,0.6,3.3,0.0,25.35,0.0,2.0,0.3680555555555556,0.43796296296296294,0.5523148148148148,,,,,2.0,,,,,,,,,10.0,,,,,,,,
|
|
||||||
11406.0,Gible,Pokemon Brilliant Stars,Starter,R,0.0,0.41666667,0.33333333,0.25,1.75,3.0,0.0,0.0,2.4,6.95,5.8,0.0,11.65,5.0,0.0,0.0,5.0,7.0,5.0,0.0,0.0,8.3,5.35,3.8,0.0,37.0,0.3013888888888889,0.3013888888888889,0.47824074074074074,3.0,20.0,False,0.0555555555555556,C,D,11.0,2.0,23.0,0.41666667,0.33333333,0.25,1.05,3.0,0.0,0.0,2.85,8.7,6.1,7.4,5.1,5.0,0.0,9.0,27.0,1.0,14.0,0.0,0.9,1.25,0.0,5.05,5.0,5.6,0.32592592592592595,0.40925925925925927,0.5037037037037037,,,,,,,3.0,3.0,3.0,,,,,,,8.0,4.0,8.0,-1.0,,,
|
|
||||||
11407.0,Gabite,Pokemon Brilliant Stars,All-Star,R,0.0,0.33333333,0.34567901,0.32098765,1.35,2.0,0.0,0.0,6.55,6.55,5.7,6.0,4.75,5.0,1.0,12.9,22.1,4.0,9.0,0.0,0.25,2.1,0.0,0.0,5.75,13.0,0.31851851851851853,0.44722222222222224,0.5050925925925925,8.0,15.0,True,0.333333333333333,C,D,15.0,2.0,23.0,0.33333333,0.34567901,0.32098765,1.05,3.0,0.0,0.0,2.4,7.35,6.7,5.0,8.4,5.0,1.0,17.0,18.0,5.0,9.0,0.0,0.6,1.6,2.0,0.0,3.9,11.0,0.32314814814814813,0.4898148148148148,0.4842592592592593,,,,,,,8.0,3.0,8.0,,,,,,,8.0,8.0,8.0,-2.0,,,
|
|
||||||
11408.0,Garchomp,Pokemon Brilliant Stars,MVP,R,0.0,0.26997,0.12672,0.60331,6.0,4.0,0.0,0.0,3.2,9.0,8.05,3.4,0.0,5.0,1.0,22.05,16.95,6.0,5.0,1.0,0.0,2.0,3.0,0.75,6.6,5.0,0.3162037037037037,0.5296296296296297,0.6513888888888889,10.0,15.0,True,0.333333333333333,C,D,13.0,2.0,23.0,0.26997,0.12672,0.60331,3.9,3.0,0.0,0.0,6.4,6.4,5.7,0.0,2.4,5.0,2.0,20.95,11.05,3.0,15.0,1.0,1.6,0.0,2.7,17.9,0.0,0.0,0.26666666666666666,0.4791666666666667,0.5351851851851852,,,,,,,3.0,3.0,3.0,,,,,,,8.0,4.0,8.0,-3.0,,,
|
|
||||||
11414.0,Farfetch'd,Pokemon Brilliant Stars,Starter,R,0.0,0.29443,0.19928,0.50629,0.0,0.0,3.5,0.0,5.4,5.1,5.4,8.0,2.7,5.0,0.0,3.75,6.25,16.0,8.0,0.0,0.3,0.9,1.0,0.0,36.7,0.0,0.30185185185185187,0.3365740740740741,0.4638888888888889,4.0,20.0,False,0.0833333333333333,C,C,13.0,2.0,23.0,0.29443,0.19928,0.50629,1.05,2.0,4.8,0.0,4.25,4.2,6.3,9.5,3.2,5.0,0.0,5.7,8.3,15.0,3.0,0.0,0.8,2.75,1.0,20.65,10.5,0.0,0.34074074074074073,0.39351851851851855,0.5648148148148148,,,,,,3.0,3.0,3.0,,,,,,,14.0,5.0,5.0,,0.0,,,
|
|
||||||
11415.0,Castform,Pokemon Brilliant Stars,Starter,R,0.0,0.22772,0.21386,0.55842,2.1,6.0,2.55,0.0,3.3,3.25,5.4,7.95,2.7,5.0,0.0,4.75,9.25,5.0,15.0,0.0,0.3,3.9,1.75,2.75,23.05,4.0,0.30324074074074076,0.3472222222222222,0.5527777777777778,3.0,12.0,True,0.25,C,A,13.0,3.0,23.0,0.22772,0.21386,0.55842,1.05,4.0,2.4,0.0,4.25,4.25,4.75,6.85,2.25,5.0,0.0,6.75,7.25,8.0,14.0,0.0,2.75,0.0,2.7,22.6,7.15,2.0,0.28055555555555556,0.34305555555555556,0.48842592592592593,,,1.0,1.0,,1.0,,,,,,2.0,6.0,,10.0,,,,,,,
|
|
||||||
11416.0,Starly,Pokemon Brilliant Stars,Starter,R,0.0,0.39130435,0.30434783,0.30434783,1.65,3.0,0.0,0.0,6.9,6.95,6.5,12.1,1.0,5.0,0.0,8.4,21.6,6.0,8.0,0.0,0.0,0.0,1.4,0.0,3.6,15.9,0.36203703703703705,0.4398148148148148,0.5777777777777777,14.0,17.0,True,0.333333333333333,C,D,18.0,1.0,23.0,0.39130435,0.30434783,0.30434783,1.05,1.0,1.6,0.0,3.2,9.65,3.2,0.0,5.1,5.0,0.0,8.5,22.5,5.0,11.0,0.0,0.9,3.3,4.0,0.0,8.0,15.0,0.24814814814814815,0.32685185185185184,0.4398148148148148,,,,,,5.0,,5.0,,,,,,,32.0,,12.0,,1.0,,,
|
|
||||||
11417.0,Staravia,Pokemon Brilliant Stars,All-Star,R,0.0,0.40821918,0.34520548,0.24657534,1.05,3.0,1.3,0.0,3.9,11.8,5.1,0.0,9.75,5.0,2.0,23.7,17.3,5.0,11.0,0.0,2.25,0.15,0.0,0.0,5.7,0.0,0.3416666666666667,0.5796296296296296,0.5819444444444445,14.0,18.0,True,0.444444444444444,C,D,17.0,1.0,23.0,0.40821918,0.34520548,0.24657534,1.4,3.0,0.0,0.0,2.4,6.8,5.7,0.0,11.4,5.0,1.0,9.2,8.8,6.0,17.0,0.0,0.6,4.8,3.0,19.9,0.0,2.0,0.2935185185185185,0.38796296296296295,0.45925925925925926,,,,,,4.0,,4.0,,,,,,,32.0,,12.0,,1.0,,,
|
|
||||||
11418.0,Staraptor,Pokemon Brilliant Stars,MVP,R,0.0,0.27103,0.09969,0.62928,8.0,6.0,0.0,0.0,2.4,2.4,15.55,2.4,5.4,5.0,0.0,19.95,7.05,12.0,4.0,0.0,0.6,1.6,0.0,0.0,11.65,4.0,0.38564814814814813,0.5703703703703704,0.7356481481481482,13.0,17.0,True,0.333333333333333,C,D,15.0,1.0,23.0,0.27103,0.09969,0.62928,4.5,3.0,3.2,0.0,2.25,6.7,3.55,0.0,1.95,5.0,1.0,22.3,7.7,5.0,12.0,1.0,1.05,3.3,4.5,20.0,0.0,0.0,0.24212962962962964,0.45787037037037037,0.5509259259259259,,,,,,3.0,,4.0,,,,,,,25.0,,12.0,,1.0,,,
|
|
||||||
11419.0,Bidoof,Pokemon Brilliant Stars,Starter,R,0.0,0.39,0.375,0.235,5.95,4.0,0.0,0.0,1.6,4.75,4.2,2.85,5.4,5.0,1.0,14.9,10.1,3.0,20.0,0.0,0.6,4.3,3.0,0.0,7.2,10.15,0.2708333333333333,0.41805555555555557,0.5504629629629629,3.0,20.0,False,0.0,C,C,10.0,2.0,23.0,0.39,0.375,0.235,2.1,6.0,0.0,0.0,1.8,5.4,3.4,0.0,6.75,5.0,0.0,13.1,20.9,6.0,11.0,0.0,1.25,3.9,1.6,15.8,1.0,3.0,0.2310185185185185,0.3523148148148148,0.4393518518518518,,4.0,4.0,,,,,,,,3.0,5.0,,,,,,,,-1.0,6.0,7.0
|
|
||||||
11420.0,Bibarel,Pokemon Brilliant Stars,All-Star,R,0.0,0.21277,0.10372,0.68351,7.1,4.0,0.0,0.0,3.4,10.2,3.6,0.0,2.05,5.0,2.0,3.8,13.2,3.0,12.0,1.0,1.95,6.8,0.9,0.0,23.0,5.0,0.28564814814814815,0.33935185185185185,0.6643518518518519,3.0,12.0,False,0.111111111111111,C,D,13.0,2.0,23.0,0.21277,0.10372,0.68351,1.4,4.0,0.0,0.0,6.2,6.25,5.7,8.35,2.75,5.0,0.0,6.5,11.5,1.0,16.0,0.0,2.25,2.35,0.0,7.1,21.65,0.0,0.32546296296296295,0.38564814814814813,0.5351851851851852,,4.0,3.0,,,,,,,,3.0,5.0,,,,,,,,-1.0,6.0,7.0
|
|
||||||
11421.0,Minccino,Pokemon Brilliant Stars,Starter,L,0.0,0.32664756,0.35243553,0.32091691,2.4,6.0,0.0,0.0,2.1,6.2,3.9,2.7,6.0,5.0,0.0,16.1,15.9,11.0,9.0,0.0,0.0,4.4,3.0,0.0,5.0,9.3,0.26666666666666666,0.41574074074074074,0.4935185185185185,13.0,18.0,True,0.444444444444444,C,D,18.0,2.0,23.0,0.32664756,0.35243553,0.32091691,1.05,3.0,0.0,0.0,2.25,6.8,5.1,0.0,9.85,5.0,0.0,12.2,13.8,5.0,11.0,0.0,0.15,5.15,5.0,1.65,5.0,16.0,0.2689814814814815,0.3819444444444444,0.4236111111111111,,,,,,5.0,,,,,,,,,25.0,,,,,,,
|
|
||||||
11422.0,Cinccino,Pokemon Brilliant Stars,All-Star,L,0.0,0.31056,0.19255,0.49689,6.05,4.0,2.25,0.0,2.5,7.6,5.25,0.0,2.4,5.0,8.0,4.75,26.25,1.0,4.0,1.0,1.6,2.35,3.0,4.0,7.0,10.0,0.2828703703703704,0.4009259259259259,0.6416666666666667,15.0,19.0,True,0.444444444444444,C,C,18.0,2.0,23.0,0.31056,0.19255,0.49689,4.8,3.0,1.9,0.0,4.8,4.75,3.6,0.0,1.75,5.0,2.0,9.9,9.1,19.0,6.0,1.0,3.25,1.45,0.0,2.7,19.0,5.0,0.23703703703703705,0.3472222222222222,0.5356481481481481,,,,,,5.0,,,,,,,,,20.0,,,,,,,
|
|
||||||
11424.0,Hawlucha,Pokemon Brilliant Stars,Starter,R,0.0,0.22772,0.21386,0.55842,2.1,6.0,2.55,0.0,3.3,3.25,5.4,7.95,2.7,5.0,0.0,4.75,9.25,5.0,15.0,0.0,0.3,3.9,1.75,2.75,23.05,4.0,0.30324074074074076,0.3472222222222222,0.5527777777777778,15.0,19.0,True,0.527777777777778,C,C,17.0,1.0,23.0,0.22772,0.21386,0.55842,1.05,4.0,2.4,0.0,4.25,4.25,4.75,6.85,2.25,5.0,0.0,6.75,7.25,8.0,14.0,0.0,2.75,0.0,2.7,22.6,7.15,2.0,0.28055555555555556,0.34305555555555556,0.48842592592592593,,,,4.0,4.0,4.0,,,,,,,22.0,28.0,44.0,,,,,,,
|
|
||||||
11426.0,Shaymin V,Pokemon Brilliant Stars,MVP,R,0.0,0.26705,0.18466,0.54829,0.0,2.0,0.0,0.0,11.05,11.05,8.35,12.55,4.25,5.0,3.0,3.2,11.8,12.0,0.0,0.0,0.75,0.0,1.95,0.0,17.05,4.0,0.4699074074074074,0.5273148148148148,0.7023148148148148,12.0,16.0,True,0.333333333333333,C,B,16.0,1.0,23.0,0.26705,0.18466,0.54829,0.0,1.0,6.8,0.0,4.75,4.5,6.8,10.2,3.4,5.0,0.0,5.75,12.25,4.0,17.0,0.0,0.6,0.5,2.0,3.65,19.8,0.0,0.36527777777777776,0.4185185185185185,0.5907407407407408,,,,4.0,4.0,5.0,,,,,,,28.0,28.0,20.0,,,,,,,
|
|
||||||
11428.0,Lumineon V,Pokemon Brilliant Stars,All-Star,R,0.0,0.36538462,0.23076923,0.40384615,2.4,5.0,0.0,0.0,6.4,19.25,8.7,0.0,4.5,5.0,0.0,14.35,18.65,5.0,10.0,1.0,0.0,1.35,0.5,0.0,0.9,5.0,0.42824074074074076,0.5611111111111111,0.8018518518518518,8.0,16.0,False,0.222222222222222,C,D,15.0,2.0,23.0,0.36538462,0.23076923,0.40384615,2.6,9.0,0.0,0.0,3.6,10.75,13.8,0.0,7.0,5.0,10.0,13.05,12.95,6.0,2.0,1.0,0.0,1.65,5.0,0.0,2.6,2.0,0.41435185185185186,0.6277777777777778,0.7444444444444445,,,,,3.0,,,,,,,,,10.0,,,,,,,,
|
|
||||||
11432.0,Whimsicott V,Pokemon Brilliant Stars,MVP,L,0.0,0.32467532,0.38095238,0.29437229,2.25,7.0,0.0,0.0,2.25,6.9,6.0,0.0,12.05,5.0,3.0,12.1,19.9,6.0,3.0,0.0,1.95,4.85,4.0,0.0,7.75,4.0,0.3282407407407407,0.46805555555555556,0.5726851851851852,11.0,16.0,True,0.5,B,C,18.0,3.0,23.0,0.32467532,0.38095238,0.29437229,1.75,5.0,0.0,0.0,4.2,12.2,4.75,0.0,9.4,5.0,5.0,8.3,7.7,10.0,3.0,0.0,0.6,3.05,3.0,5.05,6.0,14.0,0.3453703703703704,0.4685185185185185,0.6152777777777778,,,,2.0,,,,,,,,,12.0,,,,,,,,,
|
|
||||||
11434.0,Zamazenta V,Pokemon Brilliant Stars,MVP,S,0.0,0.4,0.36140351,0.23859649,4.7,6.0,0.0,0.0,6.25,6.25,14.5,5.7,3.8,5.0,0.0,2.6,1.4,5.0,30.0,0.0,0.2,4.75,5.3,0.0,1.25,5.3,0.4324074074074074,0.4564814814814815,0.7620370370370371,8.0,14.0,True,0.25,B,D,14.0,1.0,23.0,0.4,0.36140351,0.23859649,2.9,5.0,1.2,0.0,4.25,4.25,9.5,14.1,9.4,5.0,0.0,3.0,0.0,3.0,27.0,0.0,0.6,4.85,0.0,1.05,4.0,8.9,0.4685185185185185,0.4962962962962963,0.7194444444444444,,,,,1.0,,,,,,,,,8.0,,,,,,,,
|
|
||||||
11435.0,Flygon V,Pokemon Brilliant Stars,MVP,L,0.0,0.33929,0.23214,0.42857,4.25,2.0,0.0,0.0,5.8,5.75,3.25,3.2,3.2,5.0,8.0,12.9,14.1,14.0,2.0,0.0,0.8,1.0,0.0,0.0,17.75,5.0,0.26805555555555555,0.4615740740740741,0.5208333333333334,3.0,15.0,False,0.111111111111111,C,D,15.0,1.0,23.0,0.33929,0.23214,0.42857,4.8,3.0,0.0,0.0,5.8,5.85,5.4,0.0,2.55,5.0,0.0,10.5,24.5,17.0,0.0,1.0,0.45,1.35,1.0,0.0,15.8,4.0,0.26296296296296295,0.36018518518518516,0.5458333333333333,,,,,,,,,4.0,,,,,,,,,8.0,0.0,,,
|
|
||||||
11436.0,Arceus V,Pokemon Brilliant Stars,MVP,S,0.0,0.48160535,0.3277592,0.19063545,9.8,5.0,0.0,0.0,1.4,4.5,7.0,0.0,3.5,5.0,0.0,19.3,18.7,7.0,3.0,1.0,1.5,3.5,5.2,8.6,4.0,0.0,0.28888888888888886,0.4675925925925926,0.6851851851851852,3.0,15.0,True,0.25,C,A,13.0,2.0,23.0,0.48160535,0.3277592,0.19063545,8.3,4.0,0.0,0.0,2.8,8.55,7.2,0.0,3.9,5.0,0.0,19.0,17.0,3.0,10.0,1.0,2.1,2.15,5.0,0.0,5.0,4.0,0.3263888888888889,0.5023148148148148,0.7175925925925926,,1.0,1.0,,,,1.0,1.0,1.0,,0.0,0.0,,,,0.0,0.0,0.0,-3.0,-3.0,0.0,0.0
|
|
||||||
11437.0,Shaymin VSTAR,Pokemon Brilliant Stars,Hall of Fame,R,0.0,0.496240601503759,0.25062656641604,0.253132832080201,7.1,5.0,0.0,0.0,2.25,6.7,10.65,0.0,5.0,5.0,0.0,7.0,6.0,10.0,18.0,1.0,0.0,1.2,2.0,2.1,17.0,2.0,0.3398148148148148,0.4046296296296296,0.6893518518518519,14.0,17.0,True,0.555555555555556,C,B,16.0,1.0,23.0,0.496240601503759,0.25062656641604,0.253132832080201,10.1,7.0,0.0,0.0,1.05,3.1,12.2,2.1,4.0,5.0,0.0,19.3,13.7,6.0,0.0,0.0,0.0,3.9,5.9,5.75,0.0,8.9,0.35694444444444445,0.5356481481481481,0.7731481481481481,,,,3.0,3.0,4.0,,,,,,,28.0,28.0,20.0,,,,,,,
|
|
||||||
11439.0,Whimsicott VSTAR,Pokemon Brilliant Stars,Hall of Fame,L,0.0,0.40641711,0.34491979,0.2486631,8.85,5.0,0.0,0.0,0.0,3.75,5.4,0.0,10.1,5.0,0.0,20.2,8.8,5.0,1.0,0.0,0.9,3.4,2.0,0.6,10.0,18.0,0.30648148148148147,0.4935185185185185,0.6564814814814814,14.0,18.0,True,0.833333333333333,B,C,18.0,2.0,23.0,0.40641711,0.34491979,0.2486631,8.35,5.0,0.0,0.0,2.4,6.85,8.85,0.0,4.5,5.0,1.0,15.0,10.0,10.0,0.0,1.0,0.0,7.3,5.0,15.75,0.0,2.0,0.33287037037037037,0.4810185185185185,0.7199074074074074,,,,2.0,,,,,,,,,12.0,,,,,,,,,
|
|
||||||
11440.0,Galarian Articuno V,Pokemon Brilliant Stars,MVP,R,0.0,0.45959596,0.31313131,0.22727273,12.65,7.0,0.0,0.0,0.0,2.5,5.7,0.0,2.6,5.0,0.0,19.25,23.75,2.0,0.0,1.0,0.0,9.25,5.0,2.3,3.0,7.0,0.2726851851851852,0.45092592592592595,0.7444444444444445,3.0,15.0,False,0.111111111111111,B,A,13.0,1.0,23.0,0.45959596,0.31313131,0.22727273,9.25,5.0,0.0,0.0,1.9,5.7,5.0,0.0,2.5,5.0,0.0,25.95,23.05,1.0,5.0,1.0,0.0,6.55,4.0,0.0,7.1,0.0,0.27175925925925926,0.5120370370370371,0.6685185185185185,,,,3.0,,,4.0,,,,,,12.0,,,6.0,,,0.0,,,
|
|
||||||
11441.0,Galarian Zapdos V,Pokemon Brilliant Stars,MVP,R,0.0,0.37444934,0.38105727,0.24449339,6.95,4.0,0.0,0.0,2.4,7.1,10.2,0.0,5.1,5.0,0.0,17.5,11.5,5.0,2.0,1.0,0.0,4.95,2.9,5.4,9.0,8.0,0.33564814814814814,0.4976851851851852,0.6722222222222223,3.0,20.0,False,0.111111111111111,C,D,13.0,1.0,23.0,0.37444934,0.38105727,0.24449339,7.2,4.0,0.0,0.0,2.4,7.0,11.65,0.0,5.8,5.0,1.0,14.2,6.8,15.0,6.0,0.0,1.2,3.8,3.0,4.95,5.0,4.0,0.35694444444444445,0.4976851851851852,0.6995370370370371,,,,,,3.0,,3.0,,,,,,,18.0,,6.0,,0.0,,,
|
|
||||||
11442.0,Galarian Moltres V,Pokemon Brilliant Stars,MVP,R,0.0,0.40465116,0.33023256,0.26511628,7.65,4.0,0.0,0.0,3.5,10.65,6.15,0.0,3.2,5.0,0.0,20.65,12.35,6.0,2.0,1.0,0.8,4.7,3.0,0.0,5.35,12.0,0.3300925925925926,0.5212962962962963,0.7291666666666666,3.0,15.0,False,0.111111111111111,B,B,12.0,1.0,23.0,0.40465116,0.33023256,0.26511628,9.05,6.0,0.0,0.0,2.1,6.0,3.9,0.0,4.8,5.0,1.0,12.6,13.4,9.0,6.0,0.0,1.2,5.95,4.0,0.0,3.0,15.0,0.2902777777777778,0.4162037037037037,0.7,,,,,3.0,,,,3.0,,,,,0.0,,,,3.0,0.0,,,
|
|
||||||
11443.0,Arceus VSTAR,Pokemon Brilliant Stars,Hall of Fame,S,0.0,0.566084788029925,0.249376558603491,0.184538653366584,9.55,7.0,3.05,0.0,2.35,6.85,8.65,1.2,3.0,5.0,0.0,15.75,7.25,1.0,15.0,1.0,0.0,0.0,0.6,6.95,13.8,0.0,0.3763888888888889,0.5222222222222223,0.8805555555555555,3.0,18.0,True,0.444444444444444,C,A,13.0,1.0,23.0,0.566084788029925,0.249376558603491,0.184538653366584,8.65,6.0,0.0,0.0,2.7,8.15,10.8,0.0,5.0,5.0,5.0,16.4,5.6,3.0,6.0,1.0,0.0,0.2,3.0,0.0,0.5,21.0,0.37777777777777777,0.575925925925926,0.8018518518518518,,1.0,1.0,,,,1.0,1.0,1.0,,0.0,0.0,,,,0.0,0.0,0.0,-3.0,-3.0,0.0,0.0
|
|
||||||
11444.0,Magikarp,Pokemon Brilliant Stars,Replacement,S,0.0,0.15,0.15,0.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,72.0,8.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,8.0,0.0,0.1111111111111111,0.0,1.0,3.0,False,1.0,D,D,6.0,3.0,23.0,0.15,0.15,0.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,8.0,80.0,4.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,8.0,0.0,0.09259259259259259,0.0,,,,,,,,,,,,,,,,,,,,,,
|
11444.0,Magikarp,Pokemon Brilliant Stars,Replacement,S,0.0,0.15,0.15,0.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,72.0,8.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,8.0,0.0,0.1111111111111111,0.0,1.0,3.0,False,1.0,D,D,6.0,3.0,23.0,0.15,0.15,0.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,8.0,80.0,4.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,8.0,0.0,0.09259259259259259,0.0,,,,,,,,,,,,,,,,,,,,,,
|
||||||
11445.0,Trubbish,Pokemon Brilliant Stars,Reserve,R,0.0,0.15,0.15,0.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1.0,5.0,80.0,4.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,0.013888888888888888,0.06944444444444445,0.013888888888888888,2.0,20.0,False,0.027777777,C,D,9.0,3.0,23.0,0.15,0.15,0.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,7.0,12.0,74.0,4.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.018518518518518517,0.19444444444444445,0.018518518518518517,,,,,,,,,,,,,,,,,,,,,,
|
11445.0,Trubbish,Pokemon Brilliant Stars,Reserve,R,0.0,0.15,0.15,0.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1.0,5.0,80.0,4.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,0.013888888888888888,0.06944444444444445,0.013888888888888888,2.0,20.0,False,0.027777777,C,D,9.0,3.0,23.0,0.15,0.15,0.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,7.0,12.0,74.0,4.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.018518518518518517,0.19444444444444445,0.018518518518518517,,,,,,,,,,,,,,,,,,,,,,
|
||||||
11446.0,Joe Girardi,1998 Season,Replacement,R,0.0,0.21569,0.56863,0.21568,0.0,0.0,0.0,0.0,4.5,4.5,3.2,0.0,5.4,5.0,3.0,9.95,10.05,4.0,27.0,0.0,0.6,2.5,2.0,2.3,24.0,0.0,0.18611111111111112,0.3060185185185185,0.26944444444444443,1.0,4.0,False,0.08333333333333333,C,C,10.0,3.0,20.0,0.18433,0.13364,0.68203,1.05,1.0,3.75,0.0,3.5,3.6,4.75,6.9,2.4,5.0,0.0,5.1,18.9,13.0,0.0,0.0,1.6,0.0,2.35,33.0,0.0,2.1,0.26805555555555555,0.31527777777777777,0.4462962962962963,,3.0,,,,,,,,,2.0,,,,,,,,,-1.0,7.0,5.0
|
11446.0,Joe Girardi,1998 Season,Replacement,R,0.0,0.21569,0.56863,0.21568,0.0,0.0,0.0,0.0,4.5,4.5,3.2,0.0,5.4,5.0,3.0,9.95,10.05,4.0,27.0,0.0,0.6,2.5,2.0,2.3,24.0,0.0,0.18611111111111112,0.3060185185185185,0.26944444444444443,1.0,4.0,False,0.08333333333333333,C,C,10.0,3.0,20.0,0.18433,0.13364,0.68203,1.05,1.0,3.75,0.0,3.5,3.6,4.75,6.9,2.4,5.0,0.0,5.1,18.9,13.0,0.0,0.0,1.6,0.0,2.35,33.0,0.0,2.1,0.26805555555555555,0.31527777777777777,0.4462962962962963,,3.0,,,,,,,,,2.0,,,,,,,,,-1.0,7.0,5.0
|
||||||
@ -5301,11 +5291,21 @@ player_id,player_name,cardset_name,rarity,hand,variant,pull_rate_vl,center_rate_
|
|||||||
11492.0,Tony Eusebio,1998 Season,Replacement,R,0.0,0.2,0.6,0.2,0.0,0.0,0.0,0.0,0.0,0.0,3.4,5.1,1.65,5.0,0.0,7.1,24.5,1.9,10.35,0.0,9.2,1.6,1.5,14.7,22.0,0.0,0.11712962962962964,0.18287037037037038,0.11712962962962964,3.0,20.0,False,0.027777777777777776,D,D,10.0,3.0,20.0,0.2069,0.12414,0.66896,1.05,1.0,1.9,0.0,3.2,2.5,4.25,6.25,2.2,5.0,1.0,10.05,13.6,3.2,6.55,0.0,12.6,1.2,3.2,19.0,10.25,0.0,0.22546296296296295,0.3277777777777778,0.35648148148148145,,3.0,,,,,,,,,4.0,,,,,,,,,-2.0,9.0,8.0
|
11492.0,Tony Eusebio,1998 Season,Replacement,R,0.0,0.2,0.6,0.2,0.0,0.0,0.0,0.0,0.0,0.0,3.4,5.1,1.65,5.0,0.0,7.1,24.5,1.9,10.35,0.0,9.2,1.6,1.5,14.7,22.0,0.0,0.11712962962962964,0.18287037037037038,0.11712962962962964,3.0,20.0,False,0.027777777777777776,D,D,10.0,3.0,20.0,0.2069,0.12414,0.66896,1.05,1.0,1.9,0.0,3.2,2.5,4.25,6.25,2.2,5.0,1.0,10.05,13.6,3.2,6.55,0.0,12.6,1.2,3.2,19.0,10.25,0.0,0.22546296296296295,0.3277777777777778,0.35648148148148145,,3.0,,,,,,,,,4.0,,,,,,,,,-2.0,9.0,8.0
|
||||||
11493.0,Kevin Sefcik,1998 Season,Starter,R,0.0,0.24138,0.51724,0.24138,0.0,3.0,0.0,0.0,6.75,6.75,5.25,7.75,2.85,5.0,2.0,20.3,10.7,10.0,6.0,0.0,0.15,1.25,0.0,1.0,15.25,4.0,0.3087962962962963,0.5152777777777777,0.475462962962963,3.0,10.0,False,0.08333333333333333,C,B,12.0,3.0,20.0,0.20909,0.27273,0.51818,0.0,4.0,2.25,0.0,2.25,2.25,5.5,7.85,2.7,5.0,6.0,12.5,5.5,8.0,12.0,0.0,3.3,0.0,2.75,1.0,21.15,4.0,0.25277777777777777,0.42407407407407405,0.39166666666666666,,,,,,,3.0,4.0,1.0,,,,,,,2.0,2.0,2.0,-1.0,,,
|
11493.0,Kevin Sefcik,1998 Season,Starter,R,0.0,0.24138,0.51724,0.24138,0.0,3.0,0.0,0.0,6.75,6.75,5.25,7.75,2.85,5.0,2.0,20.3,10.7,10.0,6.0,0.0,0.15,1.25,0.0,1.0,15.25,4.0,0.3087962962962963,0.5152777777777777,0.475462962962963,3.0,10.0,False,0.08333333333333333,C,B,12.0,3.0,20.0,0.20909,0.27273,0.51818,0.0,4.0,2.25,0.0,2.25,2.25,5.5,7.85,2.7,5.0,6.0,12.5,5.5,8.0,12.0,0.0,3.3,0.0,2.75,1.0,21.15,4.0,0.25277777777777777,0.42407407407407405,0.39166666666666666,,,,,,,3.0,4.0,1.0,,,,,,,2.0,2.0,2.0,-1.0,,,
|
||||||
11494.0,Felipe Crespo,1998 Season,Reserve,S,0.0,0.25,0.5,0.25,0.0,0.0,0.0,0.0,0.0,0.0,6.2,9.25,3.2,5.0,0.0,29.8,18.2,9.0,4.0,0.0,0.8,1.0,1.0,3.8,12.75,4.0,0.19583333333333333,0.47175925925925927,0.19583333333333333,3.0,10.0,False,0.16666666666666666,C,B,11.0,3.0,20.0,0.32432,0.10811,0.56757,0.0,0.0,1.5,0.0,6.4,6.4,4.1,6.3,2.4,5.0,2.0,9.9,20.1,10.0,4.0,0.0,3.6,0.6,0.0,0.0,25.7,0.0,0.2740740740740741,0.38425925925925924,0.4203703703703704,,,,3.0,3.0,,3.0,,4.0,,,,71.0,0.0,,0.0,,0.0,0.0,,,
|
11494.0,Felipe Crespo,1998 Season,Reserve,S,0.0,0.25,0.5,0.25,0.0,0.0,0.0,0.0,0.0,0.0,6.2,9.25,3.2,5.0,0.0,29.8,18.2,9.0,4.0,0.0,0.8,1.0,1.0,3.8,12.75,4.0,0.19583333333333333,0.47175925925925927,0.19583333333333333,3.0,10.0,False,0.16666666666666666,C,B,11.0,3.0,20.0,0.32432,0.10811,0.56757,0.0,0.0,1.5,0.0,6.4,6.4,4.1,6.3,2.4,5.0,2.0,9.9,20.1,10.0,4.0,0.0,3.6,0.6,0.0,0.0,25.7,0.0,0.2740740740740741,0.38425925925925924,0.4203703703703704,,,,3.0,3.0,,3.0,,4.0,,,,71.0,0.0,,0.0,,0.0,0.0,,,
|
||||||
11495.0,Bill Haselman,1998 Season,All-Star,R,0.0,0.25926,0.48148,0.25926,8.6,5.0,0.0,0.0,2.4,6.7,11.85,4.5,1.5,5.0,0.0,3.4,14.75,2.7,6.15,1.0,2.4,2.75,2.75,1.4,15.0,10.15,0.37546296296296294,0.40694444444444444,0.7680555555555555,0.0,0.0,False,0.0,D,C,10.0,3.0,20.0,0.26667,0.28889,0.44444,1.9,6.0,0.0,0.0,4.8,4.8,3.2,4.75,1.5,5.0,0.0,1.95,15.65,6.6,2.8,0.0,15.35,2.2,3.2,0.0,28.3,0.0,0.2449074074074074,0.26296296296296295,0.4699074074074075,,4.0,,,,,,,,,2.0,,,,,,,,,1.0,0.0,5.0
|
11495.0,Bill Haselman,1998 Season,All-Star,R,0.0,0.25926,0.48148,0.25926,8.6,5.0,0.0,0.0,2.4,6.7,11.85,4.5,1.5,5.0,0.0,3.4,18.6,2.0,6.0,1.0,0.5,2.7,2.0,1.75,15.0,9.5,0.37546296296296294,0.40694444444444444,0.7680555555555556,0.0,0.0,False,0.0,D,C,10.0,3.0,20.0,0.26667,0.28889,0.44444,1.9,6.0,0.0,0.0,4.8,4.8,3.2,4.75,1.5,5.0,0.0,1.95,10.05,15.0,7.0,0.0,3.5,2.2,3.1,0.0,28.25,5.0,0.2449074074074074,0.26296296296296295,0.4699074074074074,,4.0,,,,,,,,,2.0,,,,,,,,,1.0,0.0,5.0
|
||||||
|
1843.0,Alex Bregman,2022 Promos,Hall of Fame,R,0.0,0.38,0.37,0.25,10.15,6.75,0.0,0.0,0.0,0.0,19.15,4.1,5.5,5.0,0.0,35.35,1.35,5.65,0.0,1.0,0.0,3.35,1.8,0.4,4.6,3.85,0.4145833333333333,0.7418981481481481,0.7902777777777777,3.0,7.0,False,0.0555555555555556,C,B,13.0,3.0,4.0,0.41,0.37,0.22,2.1,6.3,0.0,0.0,3.8,11.5,5.65,1.9,9.35,5.0,2.0,12.2,4.7,7.35,0.0,0.0,9.25,6.65,4.15,1.3,6.4,8.4,0.3699074074074074,0.5013888888888889,0.6574074074074074,,,,,4.0,,,,,,,,,10.0,,,,,,,,
|
||||||
|
1842.0,Nolan Arenado,2022 Promos,Hall of Fame,R,0.0,0.38,0.37,0.25,10.2,6.8,0.0,0.0,2.2,6.7,3.25,0.0,6.55,5.0,0.0,7.0,4.9,12.3,3.25,0.0,12.65,6.3,3.5,2.8,7.3,7.3,0.3222222222222222,0.387037037037037,0.7824074074074074,0.0,0.0,False,0.0,C,B,13.0,2.0,4.0,0.41,0.37,0.22,2.6,7.75,0.0,0.0,3.7,11.15,12.0,8.2,0.0,5.0,3.0,8.35,5.8,9.4,1.5,1.0,4.25,4.85,3.1,0.25,16.1,0.0,0.40763888888888894,0.5127314814814815,0.725,,,,,1.0,,,,,,,,,16.0,,,,,,,,
|
||||||
|
1846.0,Austin Riley,2022 Promos,Hall of Fame,R,0.0,0.38,0.37,0.25,14.9,9.95,0.0,0.0,4.6,13.8,14.65,0.0,7.35,5.0,0.0,9.95,5.35,0.0,0.0,1.0,0.0,9.0,6.3,0.0,3.55,2.6,0.58125,0.6733796296296297,1.3037037037037038,3.0,20.0,False,0.0277777777777778,C,A,12.0,3.0,4.0,0.41,0.37,0.22,7.85,5.2,0.0,0.0,4.05,12.1,10.7,0.0,5.4,5.0,0.0,7.6,8.85,0.0,1.65,1.0,4.95,10.85,6.1,1.85,8.9,5.95,0.41851851851851846,0.4888888888888888,0.8583333333333334,,,,,3.0,,,,,,,,,20.0,,,,,,,,
|
||||||
|
1847.0,Aaron Judge,2022 Promos,Hall of Fame,R,0.0,0.38,0.37,0.25,11.95,7.95,0.0,0.0,0.0,14.65,13.95,0.0,7.0,5.0,7.0,14.6,4.3,3.6,0.0,1.0,0.0,3.75,1.25,0.0,6.0,6.0,0.5002314814814814,0.7002314814814814,1.0782407407407408,3.0,16.0,True,0.138888888888889,C,B,13.0,2.0,4.0,0.41,0.37,0.22,12.65,8.4,0.0,0.0,0.55,1.7,7.75,0.6,3.25,5.0,1.0,21.05,13.7,3.9,0.0,1.0,0.0,7.85,4.8,2.95,6.85,5.0,0.3074074074074074,0.5115740740740741,0.7962962962962963,,,,,,,,3.0,2.0,,,,,,,,0.0,0.0,0.0,,,
|
||||||
|
1850.0,Yordan Alvarez,2022 Promos,Hall of Fame,L,0.0,0.38,0.37,0.25,6.85,4.6,0.0,0.0,2.1,6.4,6.65,4.0,9.25,5.0,4.0,20.3,7.3,9.45,0.0,0.0,0.0,1.55,2.85,0.7,0.0,17.0,0.3708333333333333,0.5958333333333333,0.7037037037037037,0.0,0.0,False,0.0,C,A,12.0,2.0,4.0,0.41,0.37,0.22,11.8,7.9,1.6,0.0,0.8,2.35,19.5,2.1,7.65,5.0,4.0,16.25,3.2,0.0,0.0,1.0,4.0,6.0,4.0,3.25,4.2,3.4,0.4837962962962963,0.6712962962962963,0.9800925925925925,,,,,,,2.0,,,,,,,,,5.0,,,0.0,,,
|
||||||
|
1851.0,Josh Bell,2022 Promos,Hall of Fame,S,0.0,0.38,0.37,0.25,12.35,8.2,3.1,0.0,0.8,2.35,2.8,0.0,5.6,5.0,0.0,18.5,7.05,8.45,0.0,0.0,0.0,8.75,7.45,0.0,0.0,17.6,0.3111111111111111,0.4824074074074074,0.8546296296296295,0.0,0.0,False,0.0,C,B,11.0,2.0,4.0,0.41,0.37,0.22,4.1,2.7,1.85,0.0,2.75,8.25,16.3,3.5,4.65,5.0,2.0,17.7,7.45,0.0,0.0,1.0,2.25,7.35,2.4,0.0,11.15,7.6,0.4189814814814814,0.6013888888888888,0.7064814814814815,,,5.0,,,,,,,,,10.0,,,,,,,,,,
|
||||||
|
1887.0,Paul Goldschmidt,2022 Promos,Hall of Fame,R,0.0,0.38,0.37,0.25,9.4,6.3,0.0,0.0,8.0,18.0,9.7,0.0,18.0,5.0,0.0,27.0,0.0,0.0,0.0,0.0,0.0,3.0,3.6,0.0,0.0,0.0,0.6365740740740741,0.8865740740740741,1.225925925925926,3.0,20.0,False,0.0555555555555556,C,A,12.0,2.0,4.0,0.41,0.37,0.22,4.1,2.7,1.85,0.0,2.75,8.25,16.3,3.5,4.65,5.0,2.0,17.7,7.45,0.0,0.0,1.0,2.25,7.35,2.4,0.0,11.15,7.6,0.4189814814814814,0.6013888888888888,0.7064814814814815,,,3.0,,,,,,,,,1.0,,,,,,,,,,
|
||||||
|
1888.0,Rafael Devers,2022 Promos,Hall of Fame,L,0.0,0.38,0.37,0.25,3.3,2.2,0.0,0.0,4.6,13.85,6.35,0.0,12.65,5.0,0.0,0.0,20.0,20.0,0.0,0.0,1.1,1.1,1.15,0.0,0.0,16.7,0.41064814814814815,0.41064814814814815,0.7037037037037037,3.0,10.0,False,0.0277777777777778,C,A,11.0,3.0,4.0,0.41,0.37,0.22,6.9,4.6,1.3,0.0,2.85,8.6,13.75,0.0,6.9,5.0,0.0,10.45,7.7,0.0,0.0,1.0,0.0,11.45,9.0,1.15,8.55,8.8,0.4175925925925926,0.5143518518518518,0.8032407407407407,,,,,3.0,,,,,,,,,22.0,,,,,,,,
|
||||||
|
1892.0,Manny Machado,2022 Promos,Hall of Fame,R,0.0,0.38,0.37,0.25,9.7,6.5,0.0,0.0,0.0,0.0,25.4,0.0,12.75,5.0,0.0,13.9,2.5,0.0,0.0,1.0,9.0,4.0,2.0,0.7,15.55,0.0,0.49629629629629624,0.625,0.8560185185185184,3.0,16.0,False,0.0833333333333333,C,A,14.0,2.0,4.0,0.41,0.37,0.22,0.65,1.9,0.0,0.0,7.5,7.55,7.85,0.0,15.7,5.0,2.0,13.45,9.7,6.55,0.0,0.0,11.0,1.0,0.7,0.3,17.15,0.0,0.39537037037037037,0.5384259259259259,0.5791666666666666,,,,,4.0,,,,,,,,,21.0,,,,,,,,
|
||||||
|
1891.0,Mike Trout,2022 Promos,Hall of Fame,R,0.0,0.38,0.37,0.25,0.0,0.0,0.0,0.0,5.1,15.35,5.15,5.2,5.15,5.0,0.0,31.1,4.3,6.75,1.15,0.0,5.0,2.55,1.35,0.0,7.45,7.4,0.35601851851851857,0.6439814814814815,0.5453703703703704,3.0,20.0,False,0.0277777777777778,C,B,12.0,2.0,4.0,0.41,0.37,0.22,10.4,6.95,2.45,0.0,1.85,5.5,3.35,3.4,3.35,5.0,5.0,15.35,8.9,5.55,0.0,0.0,7.5,7.35,5.8,0.25,4.55,5.5,0.33587962962962964,0.5243055555555556,0.8347222222222221,,,,,,,,3.0,,,,,,,,,1.0,,1.0,,,
|
||||||
11505.0,Damon Buford,1998 Season,Replacement,R,0.0,0.31081,0.37838,0.31081,1.9,5.0,0.0,0.0,6.35,6.35,3.75,5.7,1.6,5.0,0.0,9.65,18.35,10.0,12.0,0.0,2.4,0.75,0.0,3.9,15.3,0.0,0.28379629629629627,0.3731481481481482,0.5236111111111111,3.0,7.0,False,0.16666666666666666,C,C,10.0,3.0,20.0,0.31532,0.5045,0.18018,1.05,1.0,3.8,0.0,1.9,1.9,0.1,0.0,1.35,5.0,1.0,13.9,25.1,6.0,12.0,0.0,1.65,3.25,2.0,1.0,21.0,5.0,0.12129629629629629,0.25925925925925924,0.26990740740740743,,,,,,,,4.0,,,,,,,,,0.0,,0.0,,,
|
11505.0,Damon Buford,1998 Season,Replacement,R,0.0,0.31081,0.37838,0.31081,1.9,5.0,0.0,0.0,6.35,6.35,3.75,5.7,1.6,5.0,0.0,9.65,18.35,10.0,12.0,0.0,2.4,0.75,0.0,3.9,15.3,0.0,0.28379629629629627,0.3731481481481482,0.5236111111111111,3.0,7.0,False,0.16666666666666666,C,C,10.0,3.0,20.0,0.31532,0.5045,0.18018,1.05,1.0,3.8,0.0,1.9,1.9,0.1,0.0,1.35,5.0,1.0,13.9,25.1,6.0,12.0,0.0,1.65,3.25,2.0,1.0,21.0,5.0,0.12129629629629629,0.25925925925925924,0.26990740740740743,,,,,,,,4.0,,,,,,,,,0.0,,0.0,,,
|
||||||
11506.0,Kimera Bartee,1998 Season,Replacement,S,0.0,0.225,0.55,0.225,1.5,7.0,0.0,0.0,4.5,4.2,4.5,0.0,2.1,5.0,0.0,0.0,36.0,3.0,7.0,1.0,0.9,1.8,3.5,0.0,24.0,2.0,0.2111111111111111,0.2111111111111111,0.4305555555555556,3.0,9.0,False,0.4166666666666667,C,D,13.0,3.0,20.0,0.15217,0.47826,0.36957,0.0,2.0,2.4,0.0,3.4,3.5,0.6,3.8,1.35,0.0,0.0,11.8,41.2,3.0,5.0,0.0,1.65,3.1,1.0,0.0,23.2,1.0,0.1486111111111111,0.25787037037037036,0.2847222222222222,,,,,,,3.0,2.0,,,,,,,,8.0,8.0,,0.0,,,
|
11506.0,Kimera Bartee,1998 Season,Replacement,S,0.0,0.225,0.55,0.225,1.5,7.0,0.0,0.0,4.5,4.2,4.5,0.0,2.1,5.0,0.0,0.0,36.0,3.0,7.0,1.0,0.9,1.8,3.5,0.0,24.0,2.0,0.2111111111111111,0.2111111111111111,0.4305555555555556,3.0,9.0,False,0.4166666666666667,C,D,13.0,3.0,20.0,0.15217,0.47826,0.36957,0.0,2.0,2.4,0.0,3.4,3.5,0.6,3.8,1.35,0.0,0.0,11.8,41.2,3.0,5.0,0.0,1.65,3.1,1.0,0.0,23.2,1.0,0.1486111111111111,0.25787037037037036,0.2847222222222222,,,,,,,3.0,2.0,,,,,,,,8.0,8.0,,0.0,,,
|
||||||
11507.0,Paul Bako,1998 Season,Replacement,L,0.0,0.1,0.51515,0.38485,0.0,0.0,0.0,0.0,3.2,2.7,3.2,4.25,1.4,5.0,0.0,13.2,30.75,5.7,4.75,0.0,8.3,1.9,0.0,0.0,23.65,0.0,0.1597222222222222,0.28194444444444444,0.21435185185185185,3.0,7.0,False,0.027777777777777776,C,B,11.0,1.0,20.0,0.17213,0.1,0.72787,0.0,1.0,1.2,0.0,4.5,4.5,5.7,8.2,2.75,5.0,0.0,6.75,23.95,8.2,4.5,0.0,6.7,1.7,0.0,1.2,22.15,0.0,0.27638888888888885,0.33888888888888885,0.3958333333333333,,3.0,,,,,,,,,5.0,,,,,,,,,-2.0,11.0,11.0
|
11507.0,Paul Bako,1998 Season,Replacement,L,0.0,0.1,0.51515,0.38485,0.0,0.0,0.0,0.0,3.2,2.7,3.2,4.25,1.4,5.0,0.0,13.2,30.75,5.7,4.75,0.0,8.3,1.9,0.0,0.0,23.65,0.0,0.1597222222222222,0.28194444444444444,0.21435185185185185,3.0,7.0,False,0.027777777777777776,C,B,11.0,1.0,20.0,0.17213,0.1,0.72787,0.0,1.0,1.2,0.0,4.5,4.5,5.7,8.2,2.75,5.0,0.0,6.75,23.95,8.2,4.5,0.0,6.7,1.7,0.0,1.2,22.15,0.0,0.27638888888888885,0.33888888888888885,0.3958333333333333,,3.0,,,,,,,,,5.0,,,,,,,,,-2.0,11.0,11.0
|
||||||
11508.0,Roberto Kelly,1998 Season,All-Star,R,0.0,0.24684,0.50633,0.24683,6.45,4.0,2.5,0.0,1.75,1.75,10.1,3.2,1.9,5.0,0.0,3.75,16.9,8.5,3.75,1.0,14.5,2.4,2.4,7.25,10.9,0.0,0.2976851851851851,0.3324074074074073,0.6111111111111112,0.0,0.0,False,0.0,D,C,11.0,1.0,20.0,0.25862,0.6,0.14138,4.8,3.0,1.5,0.0,3.2,2.5,3.4,5.1,1.6,5.0,1.0,5.1,16.6,7.7,1.95,0.0,12.4,2.4,1.75,0.0,29.0,0.0,0.24166666666666667,0.29814814814814816,0.49722222222222223,,,,,,,3.0,4.0,3.0,,,,,,,6.0,6.0,6.0,-1.0,,,
|
11508.0,Roberto Kelly,1998 Season,All-Star,R,0.0,0.24684,0.50633,0.24683,6.4,4.0,2.5,0.0,1.75,1.8,10.1,3.2,1.9,5.0,0.0,3.75,24.25,9.0,9.0,1.0,1.1,2.2,1.6,6.65,7.8,5.0,0.29768518518518516,0.33240740740740743,0.6101851851851852,0.0,0.0,False,0.0,D,C,11.0,1.0,20.0,0.25862,0.6,0.14138,4.8,3.0,1.5,0.0,3.2,2.5,4.3,5.1,1.6,5.0,1.0,5.1,13.9,13.0,6.0,0.0,2.4,3.7,1.0,0.0,28.9,2.0,0.25,0.30648148148148147,0.5055555555555555,,,,,,,3.0,4.0,3.0,,,,,,,6.0,6.0,6.0,-1.0,,,
|
||||||
11509.0,Gabe Alvarez,1998 Season,Replacement,R,0.0,0.27083,0.45833,0.27084,1.05,3.0,0.0,0.0,5.7,5.4,0.3,3.75,1.2,5.0,0.0,11.8,20.2,5.0,11.0,0.0,2.8,2.55,2.0,0.0,26.25,1.0,0.19814814814814816,0.3074074074074074,0.37175925925925923,1.0,4.0,False,0.08333333333333333,D,C,8.0,1.0,20.0,0.2,0.1913,0.6087,0.0,1.0,0.0,0.0,4.75,4.75,2.65,3.9,1.3,5.0,2.0,9.1,36.9,7.0,5.0,0.0,0.7,0.25,2.0,1.6,17.1,3.0,0.1884259259259259,0.2912037037037037,0.2902777777777778,,,,,5.0,,,,,,,,,65.0,,,,,,,,
|
11509.0,Gabe Alvarez,1998 Season,Replacement,R,0.0,0.27083,0.45833,0.27084,1.05,3.0,0.0,0.0,5.7,5.4,0.3,3.75,1.2,5.0,0.0,11.8,20.2,5.0,11.0,0.0,2.8,2.55,2.0,0.0,26.25,1.0,0.19814814814814816,0.3074074074074074,0.37175925925925923,1.0,4.0,False,0.08333333333333333,D,C,8.0,1.0,20.0,0.2,0.1913,0.6087,0.0,1.0,0.0,0.0,4.75,4.75,2.65,3.9,1.3,5.0,2.0,9.1,36.9,7.0,5.0,0.0,0.7,0.25,2.0,1.6,17.1,3.0,0.1884259259259259,0.2912037037037037,0.2902777777777778,,,,,5.0,,,,,,,,,65.0,,,,,,,,
|
||||||
11510.0,Terry Pendleton,1998 Season,Replacement,S,0.0,0.27778,0.44444,0.27778,0.0,0.0,0.0,0.0,3.75,3.75,5.8,5.4,6.2,5.0,0.0,10.35,10.15,12.1,5.4,0.0,17.3,3.2,2.55,1.7,15.35,0.0,0.2537037037037037,0.34953703703703703,0.3231481481481482,3.0,20.0,False,0.027777777777777776,D,D,10.0,3.0,20.0,0.19643,0.14286,0.66071,0.0,1.0,0.0,0.0,4.5,4.5,3.25,5.1,1.4,5.0,0.0,7.0,21.15,4.25,4.25,0.0,10.35,2.55,0.0,0.0,33.7,0.0,0.2013888888888889,0.2662037037037037,0.2986111111111111,,,,,3.0,,,,,,,,,21.0,,,,,,,,
|
11510.0,Terry Pendleton,1998 Season,Replacement,S,0.0,0.27778,0.44444,0.27778,0.0,0.0,0.0,0.0,3.75,3.75,5.8,5.4,6.2,5.0,0.0,10.35,10.15,12.1,5.4,0.0,17.3,3.2,2.55,1.7,15.35,0.0,0.2537037037037037,0.34953703703703703,0.3231481481481482,3.0,20.0,False,0.027777777777777776,D,D,10.0,3.0,20.0,0.19643,0.14286,0.66071,0.0,1.0,0.0,0.0,4.5,4.5,3.25,5.1,1.4,5.0,0.0,7.0,21.15,4.25,4.25,0.0,10.35,2.55,0.0,0.0,33.7,0.0,0.2013888888888889,0.2662037037037037,0.2986111111111111,,,,,3.0,,,,,,,,,21.0,,,,,,,,
|
||||||
11511.0,Jorge Fabregas,1998 Season,Replacement,L,0.0,0.1,0.5,0.4,0.0,0.0,0.0,0.0,4.5,4.5,3.2,4.2,1.2,5.0,0.0,11.25,19.75,8.0,7.0,0.0,2.8,2.5,1.0,1.3,28.8,3.0,0.18611111111111112,0.2902777777777778,0.26944444444444443,0.0,0.0,False,0.0,D,D,11.0,3.0,20.0,0.21605,0.1,0.68395,0.0,3.0,0.0,0.0,2.4,2.4,3.25,5.1,1.4,5.0,0.0,8.65,21.35,7.0,16.0,0.0,0.6,2.6,0.0,10.35,18.9,0.0,0.17175925925925925,0.2518518518518518,0.25787037037037036,,2.0,,,,,,,,,4.0,,,,,,,,,-3.0,5.0,9.0
|
11511.0,Jorge Fabregas,1998 Season,Replacement,L,0.0,0.1,0.5,0.4,0.0,0.0,0.0,0.0,4.5,4.5,3.2,4.2,1.2,5.0,0.0,11.25,19.75,8.0,7.0,0.0,2.8,2.5,1.0,1.3,28.8,3.0,0.18611111111111112,0.2902777777777778,0.26944444444444443,0.0,0.0,False,0.0,D,D,11.0,3.0,20.0,0.21605,0.1,0.68395,0.0,3.0,0.0,0.0,2.4,2.4,3.25,5.1,1.4,5.0,0.0,8.65,21.35,7.0,16.0,0.0,0.6,2.6,0.0,10.35,18.9,0.0,0.17175925925925925,0.2518518518518518,0.25787037037037036,,2.0,,,,,,,,,4.0,,,,,,,,,-3.0,5.0,9.0
|
||||||
@ -5399,13 +5399,13 @@ player_id,player_name,cardset_name,rarity,hand,variant,pull_rate_vl,center_rate_
|
|||||||
11637.0,Wendell Magee,1998 Season,Reserve,R,0.0,0.23077,0.53846,0.23077,0.0,0.0,5.8,0.0,3.2,2.7,3.2,4.75,1.35,5.0,0.0,8.35,12.2,12.05,3.2,0.0,13.85,2.4,2.25,13.85,13.85,0.0,0.2175925925925926,0.2949074074074074,0.37962962962962965,0.0,0.0,False,0.0,D,C,9.0,1.0,20.0,0.22917,0.4375,0.33333,0.0,3.0,0.0,0.0,8.9,8.9,4.2,6.05,2.1,5.0,0.0,11.2,13.25,8.8,3.2,0.0,11.9,1.9,2.2,2.7,14.7,0.0,0.31620370370370376,0.41990740740740745,0.5226851851851853,,,,,,,3.0,,,,,,,,,14.0,,,0.0,,,
|
11637.0,Wendell Magee,1998 Season,Reserve,R,0.0,0.23077,0.53846,0.23077,0.0,0.0,5.8,0.0,3.2,2.7,3.2,4.75,1.35,5.0,0.0,8.35,12.2,12.05,3.2,0.0,13.85,2.4,2.25,13.85,13.85,0.0,0.2175925925925926,0.2949074074074074,0.37962962962962965,0.0,0.0,False,0.0,D,C,9.0,1.0,20.0,0.22917,0.4375,0.33333,0.0,3.0,0.0,0.0,8.9,8.9,4.2,6.05,2.1,5.0,0.0,11.2,13.25,8.8,3.2,0.0,11.9,1.9,2.2,2.7,14.7,0.0,0.31620370370370376,0.41990740740740745,0.5226851851851853,,,,,,,3.0,,,,,,,,,14.0,,,0.0,,,
|
||||||
11638.0,Bob Henley,1998 Season,Reserve,R,0.0,0.29032,0.41935,0.29033,1.9,9.0,0.0,0.0,0.0,0.0,5.1,7.25,2.5,5.0,0.0,12.0,18.0,3.0,12.0,0.0,2.5,2.1,1.0,0.9,25.75,0.0,0.2199074074074074,0.33101851851851855,0.3976851851851852,3.0,20.0,False,0.08333333333333333,D,C,13.0,1.0,20.0,0.20779,0.16883,0.62338,1.05,3.0,0.0,0.0,4.75,4.75,3.8,5.7,1.9,5.0,4.0,10.4,18.6,12.0,11.0,0.0,0.1,0.0,2.2,2.45,17.3,0.0,0.24027777777777778,0.3736111111111111,0.3990740740740741,,3.0,,,,,,,,,2.0,,,,,,,,,-2.0,11.0,4.0
|
11638.0,Bob Henley,1998 Season,Reserve,R,0.0,0.29032,0.41935,0.29033,1.9,9.0,0.0,0.0,0.0,0.0,5.1,7.25,2.5,5.0,0.0,12.0,18.0,3.0,12.0,0.0,2.5,2.1,1.0,0.9,25.75,0.0,0.2199074074074074,0.33101851851851855,0.3976851851851852,3.0,20.0,False,0.08333333333333333,D,C,13.0,1.0,20.0,0.20779,0.16883,0.62338,1.05,3.0,0.0,0.0,4.75,4.75,3.8,5.7,1.9,5.0,4.0,10.4,18.6,12.0,11.0,0.0,0.1,0.0,2.2,2.45,17.3,0.0,0.24027777777777778,0.3736111111111111,0.3990740740740741,,3.0,,,,,,,,,2.0,,,,,,,,,-2.0,11.0,4.0
|
||||||
11639.0,Alex Gonzalez,1998 Season,Replacement,R,0.0,0.23529,0.52941,0.2353,3.75,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,33.0,7.0,14.0,0.0,0.0,1.25,1.0,0.0,18.0,5.0,0.04398148148148148,0.2569444444444444,0.17592592592592593,0.0,0.0,False,0.0,C,D,11.0,2.0,20.0,0.26154,0.13846,0.6,1.05,4.0,0.0,0.0,2.75,2.7,2.25,4.2,1.25,5.0,2.0,7.8,24.2,4.0,14.0,0.0,3.75,1.3,2.95,2.0,19.8,3.0,0.17314814814814813,0.2638888888888889,0.30833333333333335,,,,,,4.0,,,,,,,,,16.0,,,,,,,
|
11639.0,Alex Gonzalez,1998 Season,Replacement,R,0.0,0.23529,0.52941,0.2353,3.75,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,33.0,7.0,14.0,0.0,0.0,1.25,1.0,0.0,18.0,5.0,0.04398148148148148,0.2569444444444444,0.17592592592592593,0.0,0.0,False,0.0,C,D,11.0,2.0,20.0,0.26154,0.13846,0.6,1.05,4.0,0.0,0.0,2.75,2.7,2.25,4.2,1.25,5.0,2.0,7.8,24.2,4.0,14.0,0.0,3.75,1.3,2.95,2.0,19.8,3.0,0.17314814814814813,0.2638888888888889,0.30833333333333335,,,,,,4.0,,,,,,,,,16.0,,,,,,,
|
||||||
10888.0,Rick Reed,1998 Season,All-Star,R,0.0,0.24,0.52,0.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.8,0.0,9.85,0.0,2.55,0.0,0.0,0.0,55.8,0.0,0.0,0.0,0.0,0.0,0.0,False,0.0,A,D,12.0,2.0,20.0,0.28333,0.21667,0.5,1.05,5.0,0.0,0.0,0.0,0.0,3.2,4.25,1.4,5.0,0.0,7.35,28.85,9.9,1.2,0.0,5.85,0.0,1.95,0.0,33.0,0.0,0.13796296296296295,0.2060185185185185,0.23657407407407405,3.0,,,,,,,,,6.0,,,,,,,,,,,,
|
|
||||||
10893.0,Scott Karl,1998 Season,All-Star,L,0.0,0.1,0.59091,0.30909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.15,0.0,0.0,0.0,0.0,0.0,0.0,False,0.0,B,D,8.0,1.0,20.0,0.2,0.28889,0.51111,0.0,0.0,4.25,0.0,0.0,0.0,0.0,4.5,1.2,0.0,0.0,5.9,28.15,0.0,5.1,0.0,9.6,2.2,1.05,2.4,43.65,0.0,0.09212962962962962,0.14675925925925926,0.17083333333333334,2.0,,,,,,,,,0.0,,,,,,,,,,,,
|
|
||||||
11644.0,Enrique Wilson,1998 Season,Starter,S,0.0,0.29577,0.40845,0.29578,1.1,2.0,0.0,0.0,8.7,8.75,5.4,4.75,5.7,5.0,0.0,2.0,0.0,14.0,14.0,0.0,3.3,1.15,1.0,0.0,26.15,5.0,0.3509259259259259,0.36944444444444446,0.5708333333333333,3.0,7.0,False,0.2222222222222222,C,B,16.0,1.0,20.0,0.14286,0.6,0.25714,0.0,0.0,0.0,0.0,4.75,4.5,5.65,8.55,3.25,5.0,3.0,8.25,20.75,12.0,1.0,0.0,1.75,0.5,1.0,0.0,28.05,0.0,0.27037037037037037,0.37453703703703706,0.3560185185185185,,,,3.0,,3.0,,,,,,,8.0,,21.0,,,,,,,
|
11644.0,Enrique Wilson,1998 Season,Starter,S,0.0,0.29577,0.40845,0.29578,1.1,2.0,0.0,0.0,8.7,8.75,5.4,4.75,5.7,5.0,0.0,2.0,0.0,14.0,14.0,0.0,3.3,1.15,1.0,0.0,26.15,5.0,0.3509259259259259,0.36944444444444446,0.5708333333333333,3.0,7.0,False,0.2222222222222222,C,B,16.0,1.0,20.0,0.14286,0.6,0.25714,0.0,0.0,0.0,0.0,4.75,4.5,5.65,8.55,3.25,5.0,3.0,8.25,20.75,12.0,1.0,0.0,1.75,0.5,1.0,0.0,28.05,0.0,0.27037037037037037,0.37453703703703706,0.3560185185185185,,,,3.0,,3.0,,,,,,,8.0,,21.0,,,,,,,
|
||||||
11645.0,Jeff Reed,1998 Season,All-Star,L,0.0,0.33333,0.38889,0.27778,5.4,4.0,0.0,0.0,4.75,4.5,11.65,0.0,5.85,5.0,0.0,6.5,19.5,3.0,24.0,1.0,0.15,0.0,0.0,0.0,9.7,3.0,0.33935185185185185,0.399537037037037,0.6305555555555555,0.0,0.0,False,0.0,C,C,11.0,1.0,20.0,0.20339,0.1,0.69661,1.05,4.0,0.0,0.0,5.85,4.95,3.5,5.4,1.65,5.0,0.0,13.3,17.7,5.0,15.0,0.0,1.35,2.0,0.0,5.65,11.6,5.0,0.2490740740740741,0.37222222222222223,0.4337962962962963,,2.0,,,,,,,,,7.0,,,,,,,,,-2.0,1.0,14.0
|
11645.0,Jeff Reed,1998 Season,All-Star,L,0.0,0.33333,0.38889,0.27778,5.4,4.0,0.0,0.0,4.75,4.5,11.65,0.0,5.85,5.0,0.0,6.5,19.5,3.0,24.0,1.0,0.15,0.0,0.0,0.0,9.7,3.0,0.33935185185185185,0.399537037037037,0.6305555555555555,0.0,0.0,False,0.0,C,C,11.0,1.0,20.0,0.20339,0.1,0.69661,1.05,4.0,0.0,0.0,5.85,4.95,3.5,5.4,1.65,5.0,0.0,13.3,17.7,5.0,15.0,0.0,1.35,2.0,0.0,5.65,11.6,5.0,0.2490740740740741,0.37222222222222223,0.4337962962962963,,2.0,,,,,,,,,7.0,,,,,,,,,-2.0,1.0,14.0
|
||||||
11646.0,Matt Luke,1998 Season,Replacement,L,0.0,0.3125,0.5625,0.125,0.0,0.0,0.0,0.0,7.75,7.75,0.25,4.2,1.2,5.0,0.0,12.95,19.05,14.0,7.0,0.0,2.8,0.0,1.25,0.0,21.8,3.0,0.21898148148148147,0.3388888888888889,0.3625,3.0,10.0,False,0.05555555555555555,D,D,11.0,1.0,20.0,0.28061,0.1,0.61939,1.35,6.0,0.0,0.0,3.75,3.75,2.35,3.6,1.25,5.0,0.0,6.95,23.05,10.0,2.0,0.0,3.75,2.9,1.0,3.9,22.4,5.0,0.19953703703703704,0.2638888888888889,0.38981481481481484,,,2.0,,,,3.0,,3.0,,,0.0,,,,2.0,,2.0,0.0,,,
|
11646.0,Matt Luke,1998 Season,Replacement,L,0.0,0.3125,0.5625,0.125,0.0,0.0,0.0,0.0,7.75,7.75,0.25,4.2,1.2,5.0,0.0,12.95,19.05,14.0,7.0,0.0,2.8,0.0,1.25,0.0,21.8,3.0,0.21898148148148147,0.3388888888888889,0.3625,3.0,10.0,False,0.05555555555555555,D,D,11.0,1.0,20.0,0.28061,0.1,0.61939,1.35,6.0,0.0,0.0,3.75,3.75,2.35,3.6,1.25,5.0,0.0,6.95,23.05,10.0,2.0,0.0,3.75,2.9,1.0,3.9,22.4,5.0,0.19953703703703704,0.2638888888888889,0.38981481481481484,,,2.0,,,,3.0,,3.0,,,0.0,,,,2.0,,2.0,0.0,,,
|
||||||
11647.0,Todd Greene,1998 Season,Replacement,R,0.0,0.28947,0.42105,0.28948,0.0,0.0,0.0,0.0,3.2,2.5,0.0,0.0,1.9,5.0,0.0,0.0,27.2,1.65,6.55,0.0,20.5,3.4,3.4,1.65,31.05,0.0,0.09351851851851851,0.09351851851851851,0.1462962962962963,0.0,0.0,False,0.0,D,C,10.0,1.0,20.0,0.32,0.32,0.36,1.05,5.0,0.0,0.0,5.7,5.4,6.75,10.1,3.4,5.0,0.0,3.25,27.5,0.0,5.7,0.0,9.15,1.5,1.6,0.0,16.9,0.0,0.34629629629629627,0.3763888888888889,0.5476851851851853,,,3.0,,,,5.0,,,,,0.0,,,,0.0,,,2.0,,,
|
11647.0,Todd Greene,1998 Season,Replacement,R,0.0,0.28947,0.42105,0.28948,0.0,0.0,0.0,0.0,3.2,2.5,0.0,0.0,1.9,5.0,0.0,0.0,27.2,1.65,6.55,0.0,20.5,3.4,3.4,1.65,31.05,0.0,0.09351851851851851,0.09351851851851851,0.1462962962962963,0.0,0.0,False,0.0,D,C,10.0,1.0,20.0,0.32,0.32,0.36,1.05,5.0,0.0,0.0,5.7,5.4,6.75,10.1,3.4,5.0,0.0,3.25,27.5,0.0,5.7,0.0,9.15,1.5,1.6,0.0,16.9,0.0,0.34629629629629627,0.3763888888888889,0.5476851851851853,,,3.0,,,,5.0,,,,,0.0,,,,0.0,,,2.0,,,
|
||||||
11648.0,Rico Rossy,1998 Season,Replacement,R,0.0,0.28,0.44,0.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.75,0.0,0.0,7.65,21.35,4.0,5.0,0.0,0.25,1.0,1.0,0.0,58.0,5.0,0.04398148148148148,0.11481481481481481,0.04398148148148148,0.0,0.0,False,0.0,C,D,13.0,1.0,20.0,0.27632,0.14474,0.57894,0.0,2.0,0.0,0.0,6.8,6.8,0.2,2.2,1.4,5.0,0.0,10.5,16.5,10.0,9.0,0.0,0.6,1.2,3.0,0.0,27.0,5.8,0.1935185185185185,0.29074074074074074,0.3472222222222222,,,,3.0,2.0,3.0,,,,,,,0.0,0.0,0.0,,,,,,,
|
11648.0,Rico Rossy,1998 Season,Replacement,R,0.0,0.28,0.44,0.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.75,0.0,0.0,7.65,21.35,4.0,5.0,0.0,0.25,1.0,1.0,0.0,58.0,5.0,0.04398148148148148,0.11481481481481481,0.04398148148148148,0.0,0.0,False,0.0,C,D,13.0,1.0,20.0,0.27632,0.14474,0.57894,0.0,2.0,0.0,0.0,6.8,6.8,0.2,2.2,1.4,5.0,0.0,10.5,16.5,10.0,9.0,0.0,0.6,1.2,3.0,0.0,27.0,5.8,0.1935185185185185,0.29074074074074074,0.3472222222222222,,,,3.0,2.0,3.0,,,,,,,0.0,0.0,0.0,,,,,,,
|
||||||
|
10888.0,Rick Reed,1998 Season,All-Star,R,0.0,0.24,0.52,0.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.8,0.0,9.85,0.0,2.55,0.0,0.0,0.0,55.8,0.0,0.0,0.0,0.0,0.0,0.0,False,0.0,A,D,12.0,2.0,20.0,0.28333,0.21667,0.5,1.05,5.0,0.0,0.0,0.0,0.0,3.2,4.25,1.4,5.0,0.0,7.35,28.85,9.9,1.2,0.0,5.85,0.0,1.95,0.0,33.0,0.0,0.13796296296296295,0.2060185185185185,0.23657407407407405,3.0,,,,,,,,,6.0,,,,,,,,,,,,
|
||||||
|
10893.0,Scott Karl,1998 Season,All-Star,L,0.0,0.1,0.59091,0.30909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.15,0.0,0.0,0.0,0.0,0.0,0.0,False,0.0,B,D,8.0,1.0,20.0,0.2,0.28889,0.51111,0.0,0.0,4.25,0.0,0.0,0.0,0.0,4.5,1.2,0.0,0.0,5.9,28.15,0.0,5.1,0.0,9.6,2.2,1.05,2.4,43.65,0.0,0.09212962962962962,0.14675925925925926,0.17083333333333334,2.0,,,,,,,,,0.0,,,,,,,,,,,,
|
||||||
11649.0,Jon Nunnally,1998 Season,Reserve,L,0.0,0.16667,0.54167,0.29166,4.75,3.0,0.0,0.0,3.5,10.55,3.8,0.0,1.9,0.0,6.0,0.0,9.75,5.1,7.2,1.0,0.0,1.25,1.05,14.75,34.4,0.0,0.24074074074074073,0.2962962962962963,0.5444444444444444,3.0,7.0,False,0.1111111111111111,C,D,10.0,1.0,20.0,0.30345,0.1,0.59655,3.2,2.0,0.0,0.0,3.25,3.2,0.0,3.4,1.1,5.0,0.0,21.95,17.55,7.75,1.95,0.0,7.1,1.5,0.0,3.2,25.85,0.0,0.16342592592592592,0.36666666666666664,0.33981481481481485,,,,,,,3.0,3.0,4.0,,,,,,,10.0,10.0,10.0,0.0,,,
|
11649.0,Jon Nunnally,1998 Season,Reserve,L,0.0,0.16667,0.54167,0.29166,4.75,3.0,0.0,0.0,3.5,10.55,3.8,0.0,1.9,0.0,6.0,0.0,9.75,5.1,7.2,1.0,0.0,1.25,1.05,14.75,34.4,0.0,0.24074074074074073,0.2962962962962963,0.5444444444444444,3.0,7.0,False,0.1111111111111111,C,D,10.0,1.0,20.0,0.30345,0.1,0.59655,3.2,2.0,0.0,0.0,3.25,3.2,0.0,3.4,1.1,5.0,0.0,21.95,17.55,7.75,1.95,0.0,7.1,1.5,0.0,3.2,25.85,0.0,0.16342592592592592,0.36666666666666664,0.33981481481481485,,,,,,,3.0,3.0,4.0,,,,,,,10.0,10.0,10.0,0.0,,,
|
||||||
11656.0,Edgar Martinez,1998 Promos,Hall of Fame,R,0.0,0.2,0.6,0.2,0.0,0.0,0.0,0.0,17.05,17.05,19.35,3.2,6.55,5.0,0.0,18.5,6.5,7.45,0.0,0.0,0.0,0.0,1.95,0.0,1.4,4.0,0.6083333333333333,0.7796296296296297,0.924074074074074,0.0,0.0,False,0.0,D,A,10.0,2.0,21.0,0.28,0.12,0.6,5.7,3.0,2.75,0.0,4.2,12.0,11.75,4.5,1.4,5.0,2.0,18.25,16.75,1.0,4.0,1.0,2.6,0.3,3.0,0.0,6.8,2.0,0.4287037037037037,0.6162037037037037,0.8296296296296296,,,3.0,,,,,,,,,0.0,,,,,,,,,,
|
11656.0,Edgar Martinez,1998 Promos,Hall of Fame,R,0.0,0.2,0.6,0.2,0.0,0.0,0.0,0.0,17.05,17.05,19.35,3.2,6.55,5.0,0.0,18.5,6.5,7.45,0.0,0.0,0.0,0.0,1.95,0.0,1.4,4.0,0.6083333333333333,0.7796296296296297,0.924074074074074,0.0,0.0,False,0.0,D,A,10.0,2.0,21.0,0.28,0.12,0.6,5.7,3.0,2.75,0.0,4.2,12.0,11.75,4.5,1.4,5.0,2.0,18.25,16.75,1.0,4.0,1.0,2.6,0.3,3.0,0.0,6.8,2.0,0.4287037037037037,0.6162037037037037,0.8296296296296296,,,3.0,,,,,,,,,0.0,,,,,,,,,,
|
||||||
11657.0,John Smoltz,1998 Promos,Hall of Fame,R,0.0,0.25,0.5,0.25,0.0,0.0,0.0,0.0,0.0,0.0,9.85,14.75,5.1,5.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64.8,0.0,0.29814814814814816,0.3768518518518519,0.29814814814814816,0.0,0.0,False,0.0,C,D,10.0,1.0,21.0,0.25,0.5,0.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.6,43.2,0.0,0.0,0.0,21.1,3.5,3.5,0.0,15.1,0.0,0.0,0.2,0.0,3.0,,,,,,,,,0.0,,,,,,,,,,,,
|
11657.0,John Smoltz,1998 Promos,Hall of Fame,R,0.0,0.25,0.5,0.25,0.0,0.0,0.0,0.0,0.0,0.0,9.85,14.75,5.1,5.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64.8,0.0,0.29814814814814816,0.3768518518518519,0.29814814814814816,0.0,0.0,False,0.0,C,D,10.0,1.0,21.0,0.25,0.5,0.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.6,43.2,0.0,0.0,0.0,21.1,3.5,3.5,0.0,15.1,0.0,0.0,0.2,0.0,3.0,,,,,,,,,0.0,,,,,,,,,,,,
|
||||||
@ -5561,7 +5561,7 @@ player_id,player_name,cardset_name,rarity,hand,variant,pull_rate_vl,center_rate_
|
|||||||
11810.0,Josh Jung,2025 Season,Reserve,R,0.0,0.41284404,0.31192661,0.27522936,1.05,5.0,0.0,0.0,2.25,6.5,4.25,2.55,6.0,5.0,0.0,5.7,22.3,6.0,5.0,0.0,0.0,4.45,3.0,5.5,8.0,15.45,0.25555555555555554,0.30833333333333335,0.4351851851851852,3.0,13.0,False,0.05555555555555555,C,B,10.0,3.0,24.0,0.34836066,0.42213115,0.2295082,1.2,4.0,0.0,0.0,2.4,7.1,3.6,2.55,6.8,5.0,0.0,8.1,21.9,5.0,10.0,0.0,0.2,4.7,3.0,4.0,6.0,12.45,0.26064814814814813,0.33564814814814814,0.4375,,,,,3.0,,,,,,,,,11.0,,,,,,,,
|
11810.0,Josh Jung,2025 Season,Reserve,R,0.0,0.41284404,0.31192661,0.27522936,1.05,5.0,0.0,0.0,2.25,6.5,4.25,2.55,6.0,5.0,0.0,5.7,22.3,6.0,5.0,0.0,0.0,4.45,3.0,5.5,8.0,15.45,0.25555555555555554,0.30833333333333335,0.4351851851851852,3.0,13.0,False,0.05555555555555555,C,B,10.0,3.0,24.0,0.34836066,0.42213115,0.2295082,1.2,4.0,0.0,0.0,2.4,7.1,3.6,2.55,6.8,5.0,0.0,8.1,21.9,5.0,10.0,0.0,0.2,4.7,3.0,4.0,6.0,12.45,0.26064814814814813,0.33564814814814814,0.4375,,,,,3.0,,,,,,,,,11.0,,,,,,,,
|
||||||
11811.0,Spencer Steer,2025 Season,Reserve,R,0.0,0.43529412,0.37647059,0.18823529,2.1,6.0,0.0,0.0,2.1,6.0,2.8,0.0,5.7,5.0,0.0,11.95,16.05,15.0,7.0,0.0,3.3,6.9,4.0,0.0,5.1,9.0,0.22407407407407406,0.3347222222222222,0.44074074074074077,3.0,16.0,False,0.08333333333333333,C,C,10.0,3.0,24.0,0.49328859,0.29865772,0.20805369,1.9,5.0,0.0,0.0,1.75,5.4,3.25,0.0,8.9,5.0,1.0,12.0,23.0,12.0,2.0,0.0,2.1,5.7,2.0,13.0,1.0,3.0,0.24259259259259258,0.362962962962963,0.4310185185185185,,,1.0,,,,4.0,,,,,2.0,,,,0.0,,,1.0,,,
|
11811.0,Spencer Steer,2025 Season,Reserve,R,0.0,0.43529412,0.37647059,0.18823529,2.1,6.0,0.0,0.0,2.1,6.0,2.8,0.0,5.7,5.0,0.0,11.95,16.05,15.0,7.0,0.0,3.3,6.9,4.0,0.0,5.1,9.0,0.22407407407407406,0.3347222222222222,0.44074074074074077,3.0,16.0,False,0.08333333333333333,C,C,10.0,3.0,24.0,0.49328859,0.29865772,0.20805369,1.9,5.0,0.0,0.0,1.75,5.4,3.25,0.0,8.9,5.0,1.0,12.0,23.0,12.0,2.0,0.0,2.1,5.7,2.0,13.0,1.0,3.0,0.24259259259259258,0.362962962962963,0.4310185185185185,,,1.0,,,,4.0,,,,,2.0,,,,0.0,,,1.0,,,
|
||||||
11812.0,Jj Bleday,2025 Season,Starter,L,0.0,0.62,0.28,0.1,5.7,3.0,0.0,0.0,2.2,6.2,6.7,4.2,9.25,5.0,0.0,8.75,26.25,8.0,3.0,0.0,0.75,1.1,4.0,2.1,5.0,6.8,0.3541666666666667,0.4351851851851852,0.6319444444444444,1.0,4.0,False,0.05555555555555555,C,D,11.0,3.0,24.0,0.43113772,0.37125749,0.19760479,1.9,5.0,0.0,0.0,2.2,6.1,1.8,0.0,3.2,5.0,0.0,14.85,27.15,5.0,7.0,0.0,0.8,3.9,6.1,2.0,6.0,10.0,0.18703703703703703,0.324537037037037,0.3861111111111111,,,,,,,4.0,5.0,3.0,,,,,,,4.0,4.0,4.0,-1.0,,,
|
11812.0,Jj Bleday,2025 Season,Starter,L,0.0,0.62,0.28,0.1,5.7,3.0,0.0,0.0,2.2,6.2,6.7,4.2,9.25,5.0,0.0,8.75,26.25,8.0,3.0,0.0,0.75,1.1,4.0,2.1,5.0,6.8,0.3541666666666667,0.4351851851851852,0.6319444444444444,1.0,4.0,False,0.05555555555555555,C,D,11.0,3.0,24.0,0.43113772,0.37125749,0.19760479,1.9,5.0,0.0,0.0,2.2,6.1,1.8,0.0,3.2,5.0,0.0,14.85,27.15,5.0,7.0,0.0,0.8,3.9,6.1,2.0,6.0,10.0,0.18703703703703703,0.324537037037037,0.3861111111111111,,,,,,,4.0,5.0,3.0,,,,,,,4.0,4.0,4.0,-1.0,,,
|
||||||
11813.0,Josh Smith,2025 Season,Reserve,L,0.0,0.29487179,0.41025641,0.29487179,0.0,0.0,0.0,0.0,3.3,3.4,0.0,4.5,10.5,5.0,2.0,9.8,26.15,5.9,3.25,0.0,13.0,2.2,2.2,0.0,0.0,16.8,0.22407407407407406,0.3333333333333333,0.2861111111111111,3.0,13.0,False,0.1111111111111111,C,C,12.0,2.0,24.0,0.378125,0.353125,0.26875,1.05,4.0,0.0,0.0,2.75,7.95,4.75,0.0,9.0,5.0,2.0,13.25,13.5,1.75,7.0,0.0,7.9,3.5,4.25,1.05,9.65,9.65,0.2777777777777778,0.4189814814814815,0.4615740740740741,,,3.0,3.0,4.0,4.0,4.0,3.0,3.0,,,6.0,0.0,8.0,18.0,0.0,0.0,0.0,0.0,,,
|
11813.0,Josh Smith,2025 Season,Reserve,L,0.0,0.29487179,0.41025641,0.29487179,0.0,0.0,0.0,0.0,3.3,3.4,2.7,4.5,10.5,5.0,2.0,9.8,28.2,7.0,5.0,0.0,1.5,1.6,2.0,0.0,0.0,21.5,0.2490740740740741,0.35833333333333334,0.3111111111111111,3.0,13.0,False,0.1111111111111111,C,C,12.0,2.0,24.0,0.378125,0.353125,0.26875,1.05,4.0,0.0,0.0,2.75,7.95,4.75,0.0,9.0,5.0,2.0,13.25,12.75,2.0,12.0,0.0,0.0,3.0,4.0,2.5,9.0,13.0,0.2777777777777778,0.41898148148148145,0.4615740740740741,,,3.0,3.0,4.0,4.0,4.0,3.0,3.0,,,6.0,0.0,8.0,18.0,0.0,0.0,0.0,0.0,,,
|
||||||
11814.0,Elly De La Cruz,2025 Season,Reserve,S,0.0,0.39855072,0.34057971,0.26086957,1.5,4.0,0.0,0.0,1.7,5.1,4.5,2.85,6.0,5.0,0.0,6.8,25.2,9.0,4.0,0.0,0.0,1.9,3.5,2.8,9.0,15.15,0.24212962962962964,0.3050925925925926,0.4023148148148148,11.0,15.0,True,0.3611111111111111,C,B,15.0,2.0,24.0,0.39228296,0.34726688,0.26045016,1.65,5.0,3.2,0.0,2.5,7.4,3.3,0.0,7.85,5.0,0.0,15.35,18.65,9.0,1.0,0.0,0.15,2.95,3.0,14.0,2.0,6.0,0.2861111111111111,0.42824074074074076,0.5523148148148148,,,,,,4.0,,,,,,,,,31.0,,,,,,,
|
11814.0,Elly De La Cruz,2025 Season,Reserve,S,0.0,0.39855072,0.34057971,0.26086957,1.5,4.0,0.0,0.0,1.7,5.1,4.5,2.85,6.0,5.0,0.0,6.8,25.2,9.0,4.0,0.0,0.0,1.9,3.5,2.8,9.0,15.15,0.24212962962962964,0.3050925925925926,0.4023148148148148,11.0,15.0,True,0.3611111111111111,C,B,15.0,2.0,24.0,0.39228296,0.34726688,0.26045016,1.65,5.0,3.2,0.0,2.5,7.4,3.3,0.0,7.85,5.0,0.0,15.35,18.65,9.0,1.0,0.0,0.15,2.95,3.0,14.0,2.0,6.0,0.2861111111111111,0.42824074074074076,0.5523148148148148,,,,,,4.0,,,,,,,,,31.0,,,,,,,
|
||||||
11815.0,Dillon Dingler,2025 Season,Starter,R,0.0,0.47058824,0.32941176,0.2,1.7,5.0,1.2,0.0,3.95,11.7,9.5,0.0,4.75,5.0,0.0,9.65,19.35,1.0,13.0,1.0,0.25,4.6,2.0,0.0,5.35,9.0,0.35,0.4393518518518518,0.6337962962962963,0.0,0.0,False,0.0,C,B,12.0,2.0,24.0,0.37759336,0.3526971,0.26970954,1.05,5.0,0.0,0.0,1.9,5.7,5.1,0.0,10.1,5.0,3.0,5.7,35.3,12.0,1.0,0.0,0.9,5.25,3.0,1.0,7.0,0.0,0.2671296296296296,0.3476851851851852,0.4361111111111111,,1.0,,,,,,,,,3.0,,,,,,,,,-2.0,0.0,6.0
|
11815.0,Dillon Dingler,2025 Season,Starter,R,0.0,0.47058824,0.32941176,0.2,1.7,5.0,1.2,0.0,3.95,11.7,9.5,0.0,4.75,5.0,0.0,9.65,19.35,1.0,13.0,1.0,0.25,4.6,2.0,0.0,5.35,9.0,0.35,0.4393518518518518,0.6337962962962963,0.0,0.0,False,0.0,C,B,12.0,2.0,24.0,0.37759336,0.3526971,0.26970954,1.05,5.0,0.0,0.0,1.9,5.7,5.1,0.0,10.1,5.0,3.0,5.7,35.3,12.0,1.0,0.0,0.9,5.25,3.0,1.0,7.0,0.0,0.2671296296296296,0.3476851851851852,0.4361111111111111,,1.0,,,,,,,,,3.0,,,,,,,,,-2.0,0.0,6.0
|
||||||
11816.0,Spencer Torkelson,2025 Season,Starter,R,0.0,0.53333333,0.275,0.19166667,2.2,8.0,0.0,0.0,2.55,7.65,3.2,0.0,5.7,5.0,0.0,19.1,15.9,5.0,10.0,0.0,3.3,6.15,3.0,0.0,2.25,9.0,0.2574074074074074,0.43425925925925923,0.524074074074074,3.0,10.0,False,0.027777777777777776,C,C,12.0,2.0,24.0,0.46594982,0.32616487,0.2078853,1.75,7.0,0.0,0.0,1.9,5.7,2.8,0.0,5.7,5.0,2.0,12.95,16.05,6.0,15.0,0.0,3.3,6.55,3.0,4.3,0.0,9.0,0.22083333333333333,0.3592592592592593,0.43703703703703706,,,3.0,,,,,,,,,5.0,,,,,,,,,,
|
11816.0,Spencer Torkelson,2025 Season,Starter,R,0.0,0.53333333,0.275,0.19166667,2.2,8.0,0.0,0.0,2.55,7.65,3.2,0.0,5.7,5.0,0.0,19.1,15.9,5.0,10.0,0.0,3.3,6.15,3.0,0.0,2.25,9.0,0.2574074074074074,0.43425925925925923,0.524074074074074,3.0,10.0,False,0.027777777777777776,C,C,12.0,2.0,24.0,0.46594982,0.32616487,0.2078853,1.75,7.0,0.0,0.0,1.9,5.7,2.8,0.0,5.7,5.0,2.0,12.95,16.05,6.0,15.0,0.0,3.3,6.55,3.0,4.3,0.0,9.0,0.22083333333333333,0.3592592592592593,0.43703703703703706,,,3.0,,,,,,,,,5.0,,,,,,,,,,
|
||||||
@ -5631,7 +5631,7 @@ player_id,player_name,cardset_name,rarity,hand,variant,pull_rate_vl,center_rate_
|
|||||||
12040.0,Tyler Stephenson,2025 Season,Starter,R,0.0,0.46666667,0.31111111,0.22222222,1.2,4.0,0.0,0.0,3.9,11.5,2.1,0.0,4.2,5.0,2.0,20.75,18.5,4.5,4.5,0.0,6.5,3.6,2.2,0.0,6.0,7.55,0.2537037037037037,0.46435185185185185,0.4851851851851852,0.0,0.0,False,0.0,C,B,9.0,3.0,24.0,0.4084507,0.33802817,0.25352113,1.95,6.0,0.0,0.0,2.1,5.9,2.75,0.0,5.7,5.0,0.0,12.55,35.9,0.0,7.25,0.0,0.0,6.95,5.1,1.65,4.1,5.1,0.22129629629629632,0.3375,0.43287037037037035,,2.0,,,,,,,,,1.0,,,,,,,,,0.0,1.0,3.0
|
12040.0,Tyler Stephenson,2025 Season,Starter,R,0.0,0.46666667,0.31111111,0.22222222,1.2,4.0,0.0,0.0,3.9,11.5,2.1,0.0,4.2,5.0,2.0,20.75,18.5,4.5,4.5,0.0,6.5,3.6,2.2,0.0,6.0,7.55,0.2537037037037037,0.46435185185185185,0.4851851851851852,0.0,0.0,False,0.0,C,B,9.0,3.0,24.0,0.4084507,0.33802817,0.25352113,1.95,6.0,0.0,0.0,2.1,5.9,2.75,0.0,5.7,5.0,0.0,12.55,35.9,0.0,7.25,0.0,0.0,6.95,5.1,1.65,4.1,5.1,0.22129629629629632,0.3375,0.43287037037037035,,2.0,,,,,,,,,1.0,,,,,,,,,0.0,1.0,3.0
|
||||||
12041.0,Jake Cronenworth,2025 Season,Starter,L,0.0,0.33962264,0.3490566,0.31132075,1.2,4.0,0.0,0.0,1.9,5.8,4.75,3.2,6.35,5.0,4.0,17.2,17.8,5.0,11.0,0.0,1.65,2.0,0.0,0.0,1.35,15.8,0.2564814814814815,0.4527777777777778,0.4166666666666667,3.0,9.0,False,0.05555555555555555,C,B,13.0,3.0,24.0,0.36866359,0.37327189,0.25806452,1.05,4.0,0.0,0.0,2.4,6.85,4.2,0.0,8.25,5.0,3.0,18.1,14.9,3.0,10.0,0.0,0.75,4.15,4.95,0.0,5.4,12.0,0.2523148148148148,0.4476851851851852,0.42268518518518516,,,3.0,5.0,,3.0,,,,,,0.0,17.0,,0.0,,,,,,,
|
12041.0,Jake Cronenworth,2025 Season,Starter,L,0.0,0.33962264,0.3490566,0.31132075,1.2,4.0,0.0,0.0,1.9,5.8,4.75,3.2,6.35,5.0,4.0,17.2,17.8,5.0,11.0,0.0,1.65,2.0,0.0,0.0,1.35,15.8,0.2564814814814815,0.4527777777777778,0.4166666666666667,3.0,9.0,False,0.05555555555555555,C,B,13.0,3.0,24.0,0.36866359,0.37327189,0.25806452,1.05,4.0,0.0,0.0,2.4,6.85,4.2,0.0,8.25,5.0,3.0,18.1,14.9,3.0,10.0,0.0,0.75,4.15,4.95,0.0,5.4,12.0,0.2523148148148148,0.4476851851851852,0.42268518518518516,,,3.0,5.0,,3.0,,,,,,0.0,17.0,,0.0,,,,,,,
|
||||||
12042.0,Austin Riley,2025 Season,Reserve,R,0.0,0.40540541,0.32432432,0.27027027,1.2,6.0,0.0,0.0,3.2,3.2,5.1,0.0,10.0,5.0,0.0,6.55,32.45,6.0,5.0,0.0,0.0,4.6,3.0,2.7,7.0,7.0,0.2611111111111111,0.32175925925925924,0.43703703703703706,3.0,10.0,False,0.05555555555555555,C,B,10.0,3.0,24.0,0.4372093,0.38139535,0.18139535,1.65,5.0,0.0,0.0,2.7,7.25,3.3,2.4,6.3,5.0,0.0,9.35,32.65,4.0,7.0,0.0,2.7,5.1,3.0,3.0,4.0,3.6,0.26481481481481484,0.35138888888888886,0.4722222222222222,,,,,4.0,,,,,,,,,23.0,,,,,,,,
|
12042.0,Austin Riley,2025 Season,Reserve,R,0.0,0.40540541,0.32432432,0.27027027,1.2,6.0,0.0,0.0,3.2,3.2,5.1,0.0,10.0,5.0,0.0,6.55,32.45,6.0,5.0,0.0,0.0,4.6,3.0,2.7,7.0,7.0,0.2611111111111111,0.32175925925925924,0.43703703703703706,3.0,10.0,False,0.05555555555555555,C,B,10.0,3.0,24.0,0.4372093,0.38139535,0.18139535,1.65,5.0,0.0,0.0,2.7,7.25,3.3,2.4,6.3,5.0,0.0,9.35,32.65,4.0,7.0,0.0,2.7,5.1,3.0,3.0,4.0,3.6,0.26481481481481484,0.35138888888888886,0.4722222222222222,,,,,4.0,,,,,,,,,23.0,,,,,,,,
|
||||||
12043.0,Leody Taveras,2025 Season,Replacement,S,0.0,0.45,0.35,0.2,0.0,0.0,0.0,0.0,2.75,8.0,6.65,0.0,13.35,5.0,0.0,8.35,27.4,3.5,6.3,0.0,8.75,2.25,3.75,0.0,5.4,6.55,0.30787037037037035,0.3851851851851852,0.4074074074074074,3.0,11.0,True,0.3888888888888889,C,C,12.0,1.0,24.0,0.3047619,0.35238095,0.34285714,1.05,3.0,1.2,0.0,3.2,2.75,3.2,0.0,5.4,5.0,0.0,2.75,28.55,8.15,0.0,0.0,17.05,4.75,4.2,0.0,8.45,9.3,0.19259259259259257,0.21805555555555553,0.34074074074074073,,,,,,,,4.0,4.0,,,,,,,,8.0,8.0,0.0,,,
|
12043.0,Leody Taveras,2025 Season,Replacement,S,0.0,0.45,0.35,0.2,0.0,0.0,0.0,0.0,2.75,8.0,6.65,0.0,13.35,5.0,0.0,8.35,26.65,1.0,11.0,0.0,1.65,2.0,3.0,0.0,4.6,14.0,0.30787037037037035,0.3851851851851852,0.4074074074074074,3.0,11.0,True,0.3888888888888889,C,C,12.0,1.0,24.0,0.3047619,0.35238095,0.34285714,1.05,3.0,1.2,0.0,3.2,2.75,3.6,0.0,5.4,5.0,0.0,2.75,32.25,12.0,2.0,0.0,0.6,4.2,4.0,0.0,8.0,17.0,0.1962962962962963,0.22175925925925927,0.34444444444444444,,,,,,,,4.0,4.0,,,,,,,,8.0,8.0,0.0,,,
|
||||||
12044.0,Eli White,2025 Season,Reserve,R,0.0,0.39393939,0.31818182,0.28787879,1.4,8.0,0.0,0.0,3.25,3.2,3.75,0.0,7.1,5.0,0.0,8.1,28.9,7.0,3.0,0.0,3.9,3.4,2.0,0.0,9.0,11.0,0.23333333333333334,0.30833333333333335,0.44305555555555554,3.0,16.0,True,0.16666666666666666,C,C,12.0,2.0,24.0,0.37704918,0.30327869,0.31967213,1.05,4.0,3.3,0.0,1.35,3.75,4.35,3.4,4.2,5.0,2.0,3.4,28.6,11.0,1.0,0.0,1.8,4.2,3.0,0.0,9.0,13.6,0.23981481481481481,0.2898148148148148,0.43287037037037035,,,3.0,,,,3.0,3.0,2.0,,,0.0,,,,1.0,1.0,1.0,-2.0,,,
|
12044.0,Eli White,2025 Season,Reserve,R,0.0,0.39393939,0.31818182,0.28787879,1.4,8.0,0.0,0.0,3.25,3.2,3.75,0.0,7.1,5.0,0.0,8.1,28.9,7.0,3.0,0.0,3.9,3.4,2.0,0.0,9.0,11.0,0.23333333333333334,0.30833333333333335,0.44305555555555554,3.0,16.0,True,0.16666666666666666,C,C,12.0,2.0,24.0,0.37704918,0.30327869,0.31967213,1.05,4.0,3.3,0.0,1.35,3.75,4.35,3.4,4.2,5.0,2.0,3.4,28.6,11.0,1.0,0.0,1.8,4.2,3.0,0.0,9.0,13.6,0.23981481481481481,0.2898148148148148,0.43287037037037035,,,3.0,,,,3.0,3.0,2.0,,,0.0,,,,1.0,1.0,1.0,-2.0,,,
|
||||||
12045.0,Sean Murphy,2025 Season,Starter,R,0.0,0.48275862,0.27586207,0.24137931,6.6,4.0,0.0,0.0,1.9,5.4,1.1,0.0,2.75,5.0,2.0,20.35,22.65,5.0,10.0,1.0,2.25,3.0,2.0,3.0,3.0,7.0,0.20601851851851852,0.412962962962963,0.5125,0.0,0.0,False,0.0,C,D,9.0,1.0,24.0,0.51145038,0.3129771,0.17557252,4.75,3.0,0.0,0.0,1.65,4.75,1.35,0.0,5.4,5.0,3.0,10.5,22.5,6.0,10.0,0.0,0.6,4.5,2.0,5.0,6.0,12.0,0.20277777777777778,0.3277777777777778,0.4356481481481482,,2.0,,,,,,,,,1.0,,,,,,,,,-2.0,3.0,2.0
|
12045.0,Sean Murphy,2025 Season,Starter,R,0.0,0.48275862,0.27586207,0.24137931,6.6,4.0,0.0,0.0,1.9,5.4,1.1,0.0,2.75,5.0,2.0,20.35,22.65,5.0,10.0,1.0,2.25,3.0,2.0,3.0,3.0,7.0,0.20601851851851852,0.412962962962963,0.5125,0.0,0.0,False,0.0,C,D,9.0,1.0,24.0,0.51145038,0.3129771,0.17557252,4.75,3.0,0.0,0.0,1.65,4.75,1.35,0.0,5.4,5.0,3.0,10.5,22.5,6.0,10.0,0.0,0.6,4.5,2.0,5.0,6.0,12.0,0.20277777777777778,0.3277777777777778,0.4356481481481482,,2.0,,,,,,,,,1.0,,,,,,,,,-2.0,3.0,2.0
|
||||||
12046.0,Austin Hays,2025 Season,Starter,R,0.0,0.42647059,0.41176471,0.16176471,1.05,3.0,5.1,0.0,4.2,11.55,3.9,0.0,7.6,5.0,2.0,14.05,16.95,5.0,10.0,0.0,0.4,3.4,2.0,0.0,4.8,8.0,0.34629629629629627,0.4949074074074074,0.6574074074074074,10.0,20.0,False,0.08333333333333333,C,B,12.0,1.0,24.0,0.53080569,0.29383886,0.17535545,1.25,7.0,1.5,0.0,1.2,3.6,5.3,2.55,5.95,5.0,0.0,7.1,24.9,5.0,13.0,0.0,1.05,5.15,2.0,12.0,0.0,4.45,0.25324074074074077,0.3189814814814815,0.45740740740740743,,,,,,,3.0,,,,,,,,,5.0,,,1.0,,,
|
12046.0,Austin Hays,2025 Season,Starter,R,0.0,0.42647059,0.41176471,0.16176471,1.05,3.0,5.1,0.0,4.2,11.55,3.9,0.0,7.6,5.0,2.0,14.05,16.95,5.0,10.0,0.0,0.4,3.4,2.0,0.0,4.8,8.0,0.34629629629629627,0.4949074074074074,0.6574074074074074,10.0,20.0,False,0.08333333333333333,C,B,12.0,1.0,24.0,0.53080569,0.29383886,0.17535545,1.25,7.0,1.5,0.0,1.2,3.6,5.3,2.55,5.95,5.0,0.0,7.1,24.9,5.0,13.0,0.0,1.05,5.15,2.0,12.0,0.0,4.45,0.25324074074074077,0.3189814814814815,0.45740740740740743,,,,,,,3.0,,,,,,,,,5.0,,,1.0,,,
|
||||||
@ -5648,7 +5648,7 @@ player_id,player_name,cardset_name,rarity,hand,variant,pull_rate_vl,center_rate_
|
|||||||
12057.0,Ivan Herrera,2025 Season,MVP,R,0.0,0.37037037,0.30864198,0.32098765,9.3,6.0,0.0,0.0,2.1,6.1,9.5,0.0,4.75,5.0,5.0,20.1,9.9,2.0,8.0,1.0,0.25,2.6,2.0,6.4,2.0,6.0,0.3449074074074074,0.5773148148148148,0.7625,3.0,16.0,False,0.08333333333333333,C,B,12.0,1.0,24.0,0.3876652,0.35682819,0.25550661,1.6,6.0,0.0,0.0,1.6,4.75,5.4,0.0,10.4,5.0,4.0,9.5,18.5,3.0,12.0,0.0,0.6,3.65,2.0,20.0,0.0,0.0,0.2708333333333333,0.3958333333333333,0.45740740740740743,,4.0,,,,,3.0,,,,5.0,,,,,0.0,,,0.0,5.0,9.0,10.0
|
12057.0,Ivan Herrera,2025 Season,MVP,R,0.0,0.37037037,0.30864198,0.32098765,9.3,6.0,0.0,0.0,2.1,6.1,9.5,0.0,4.75,5.0,5.0,20.1,9.9,2.0,8.0,1.0,0.25,2.6,2.0,6.4,2.0,6.0,0.3449074074074074,0.5773148148148148,0.7625,3.0,16.0,False,0.08333333333333333,C,B,12.0,1.0,24.0,0.3876652,0.35682819,0.25550661,1.6,6.0,0.0,0.0,1.6,4.75,5.4,0.0,10.4,5.0,4.0,9.5,18.5,3.0,12.0,0.0,0.6,3.65,2.0,20.0,0.0,0.0,0.2708333333333333,0.3958333333333333,0.45740740740740743,,4.0,,,,,3.0,,,,5.0,,,,,0.0,,,0.0,5.0,9.0,10.0
|
||||||
12058.0,Leo Rivas,2025 Season,Starter,S,0.0,0.4137931,0.4137931,0.17241379,0.0,0.0,0.0,0.0,3.5,10.35,6.9,0.0,13.85,5.0,0.0,15.8,12.2,5.0,6.0,0.0,0.15,2.65,5.0,0.0,0.0,21.6,0.3435185185185185,0.4898148148148148,0.47175925925925927,3.0,20.0,True,0.19444444444444445,C,B,13.0,1.0,24.0,0.43243243,0.18918919,0.37837838,2.25,7.0,0.0,0.0,0.0,0.0,4.2,3.75,4.25,5.0,1.0,28.6,19.4,7.0,0.0,0.0,0.75,4.0,3.75,0.0,4.8,12.25,0.18935185185185185,0.4634259259259259,0.3490740740740741,,,,3.0,,3.0,,,3.0,,,,8.0,,0.0,,,0.0,0.0,,,
|
12058.0,Leo Rivas,2025 Season,Starter,S,0.0,0.4137931,0.4137931,0.17241379,0.0,0.0,0.0,0.0,3.5,10.35,6.9,0.0,13.85,5.0,0.0,15.8,12.2,5.0,6.0,0.0,0.15,2.65,5.0,0.0,0.0,21.6,0.3435185185185185,0.4898148148148148,0.47175925925925927,3.0,20.0,True,0.19444444444444445,C,B,13.0,1.0,24.0,0.43243243,0.18918919,0.37837838,2.25,7.0,0.0,0.0,0.0,0.0,4.2,3.75,4.25,5.0,1.0,28.6,19.4,7.0,0.0,0.0,0.75,4.0,3.75,0.0,4.8,12.25,0.18935185185185185,0.4634259259259259,0.3490740740740741,,,,3.0,,3.0,,,3.0,,,,8.0,,0.0,,,0.0,0.0,,,
|
||||||
12059.0,Trevor Larnach,2025 Season,Reserve,L,0.0,0.35897436,0.42307692,0.21794872,1.05,1.0,0.0,0.0,2.7,7.65,4.5,0.0,8.85,5.0,1.0,10.0,15.0,6.0,9.0,0.0,0.0,5.35,6.1,6.8,0.0,18.0,0.2569444444444444,0.3587962962962963,0.3958333333333333,3.0,7.0,False,0.08333333333333333,C,C,12.0,3.0,24.0,0.42071197,0.33009709,0.24919094,1.4,6.0,0.0,0.0,2.25,6.8,3.85,0.0,7.65,5.0,0.0,13.55,23.45,6.0,5.0,0.0,1.35,4.2,5.6,10.9,0.0,5.0,0.25416666666666665,0.37962962962962965,0.4601851851851852,,,,,,,4.0,,4.0,,,,,,,0.0,,0.0,1.0,,,
|
12059.0,Trevor Larnach,2025 Season,Reserve,L,0.0,0.35897436,0.42307692,0.21794872,1.05,1.0,0.0,0.0,2.7,7.65,4.5,0.0,8.85,5.0,1.0,10.0,15.0,6.0,9.0,0.0,0.0,5.35,6.1,6.8,0.0,18.0,0.2569444444444444,0.3587962962962963,0.3958333333333333,3.0,7.0,False,0.08333333333333333,C,C,12.0,3.0,24.0,0.42071197,0.33009709,0.24919094,1.4,6.0,0.0,0.0,2.25,6.8,3.85,0.0,7.65,5.0,0.0,13.55,23.45,6.0,5.0,0.0,1.35,4.2,5.6,10.9,0.0,5.0,0.25416666666666665,0.37962962962962965,0.4601851851851852,,,,,,,4.0,,4.0,,,,,,,0.0,,0.0,1.0,,,
|
||||||
12060.0,Jonathan India,2025 Season,Reserve,R,0.0,0.41891892,0.33783784,0.24324324,1.25,3.0,0.0,0.0,1.65,5.1,5.4,7.5,2.5,5.0,5.0,11.35,19.25,0.0,5.7,0.0,9.0,5.7,3.75,0.0,8.2,8.65,0.2537037037037037,0.4050925925925926,0.3925925925925926,0.0,0.0,False,0.0,C,C,11.0,2.0,24.0,0.503125,0.2625,0.234375,1.05,2.0,0.0,0.0,3.2,8.8,3.4,0.0,6.6,5.0,2.0,13.05,16.85,3.2,4.5,0.0,11.25,6.0,3.5,7.9,4.6,5.1,0.24583333333333332,0.3851851851851852,0.4138888888888889,,,,3.0,3.0,,3.0,,,,,,16.0,50.0,,7.0,,,0.0,,,
|
12060.0,Jonathan India,2025 Season,Reserve,R,0.0,0.41891892,0.33783784,0.24324324,1.25,3.0,0.0,0.0,1.65,5.1,5.4,7.5,2.5,5.0,5.0,11.35,16.65,5.0,13.0,0.0,2.5,5.65,0.0,0.0,1.95,15.5,0.2537037037037037,0.4050925925925926,0.3925925925925926,0.0,0.0,False,0.0,C,C,11.0,2.0,24.0,0.503125,0.2625,0.234375,1.05,2.0,0.0,0.0,3.2,8.8,3.4,0.0,6.6,5.0,2.0,13.05,14.95,8.0,9.0,0.0,0.4,5.15,3.0,7.4,4.0,11.0,0.24583333333333332,0.3851851851851852,0.41388888888888886,,,,3.0,3.0,,3.0,,,,,,16.0,50.0,,7.0,,,0.0,,,
|
||||||
12061.0,Jeremy Pena,2025 Season,All-Star,R,0.0,0.40963855,0.44578313,0.14457831,2.4,7.0,0.0,0.0,1.35,3.75,5.7,3.3,7.65,5.0,0.0,12.1,18.9,1.0,10.0,0.0,1.35,4.85,0.0,1.95,5.0,16.7,0.2791666666666667,0.3912037037037037,0.49027777777777776,13.0,18.0,True,0.1388888888888889,C,B,13.0,3.0,24.0,0.459375,0.340625,0.2,1.05,5.0,1.05,0.0,3.4,9.95,5.1,3.2,6.8,5.0,3.0,8.0,16.0,6.0,5.0,0.0,0.2,5.0,2.0,5.45,5.0,11.8,0.32916666666666666,0.4310185185185185,0.5708333333333333,,,,,,2.0,,,,,,,,,14.0,,,,,,,
|
12061.0,Jeremy Pena,2025 Season,All-Star,R,0.0,0.40963855,0.44578313,0.14457831,2.4,7.0,0.0,0.0,1.35,3.75,5.7,3.3,7.65,5.0,0.0,12.1,18.9,1.0,10.0,0.0,1.35,4.85,0.0,1.95,5.0,16.7,0.2791666666666667,0.3912037037037037,0.49027777777777776,13.0,18.0,True,0.1388888888888889,C,B,13.0,3.0,24.0,0.459375,0.340625,0.2,1.05,5.0,1.05,0.0,3.4,9.95,5.1,3.2,6.8,5.0,3.0,8.0,16.0,6.0,5.0,0.0,0.2,5.0,2.0,5.45,5.0,11.8,0.32916666666666666,0.4310185185185185,0.5708333333333333,,,,,,2.0,,,,,,,,,14.0,,,,,,,
|
||||||
12062.0,Miguel Amaya,2025 Season,Reserve,R,0.0,0.5,0.41666667,0.08333333,5.4,4.0,0.0,0.0,0.0,0.0,0.0,2.8,3.5,5.0,0.0,6.15,40.45,5.7,0.0,0.0,4.2,2.8,1.2,0.0,0.0,26.8,0.15,0.20694444444444443,0.35555555555555557,0.0,0.0,False,0.0,C,B,10.0,3.0,24.0,0.546875,0.296875,0.15625,1.05,5.0,0.0,0.0,4.5,13.5,3.75,2.25,5.4,5.0,2.0,4.5,15.95,1.5,8.35,0.0,10.45,6.85,3.2,0.0,7.6,7.15,0.3282407407407408,0.38842592592592595,0.5935185185185184,,3.0,,,,,,,,,2.0,,,,,,,,,0.0,0.0,4.0
|
12062.0,Miguel Amaya,2025 Season,Reserve,R,0.0,0.5,0.41666667,0.08333333,5.4,4.0,0.0,0.0,0.0,0.0,0.0,2.8,3.5,5.0,0.0,6.15,40.45,5.7,0.0,0.0,4.2,2.8,1.2,0.0,0.0,26.8,0.15,0.20694444444444443,0.35555555555555557,0.0,0.0,False,0.0,C,B,10.0,3.0,24.0,0.546875,0.296875,0.15625,1.05,5.0,0.0,0.0,4.5,13.5,3.75,2.25,5.4,5.0,2.0,4.5,15.95,1.5,8.35,0.0,10.45,6.85,3.2,0.0,7.6,7.15,0.3282407407407408,0.38842592592592595,0.5935185185185184,,3.0,,,,,,,,,2.0,,,,,,,,,0.0,0.0,4.0
|
||||||
12063.0,Oswaldo Cabrera,2025 Season,Reserve,S,0.0,0.4,0.46666667,0.13333333,0.0,0.0,0.0,0.0,0.0,0.0,18.5,2.8,6.45,5.0,10.0,10.55,16.85,0.0,7.55,1.0,2.7,1.4,2.5,1.2,12.9,8.6,0.2800925925925926,0.47037037037037044,0.2800925925925926,0.0,0.0,False,0.0,C,B,13.0,1.0,24.0,0.43478261,0.31884058,0.24637681,0.0,2.0,0.0,0.0,2.4,7.05,4.25,2.5,5.9,5.0,1.0,13.45,19.9,4.5,3.3,0.0,6.95,2.7,3.75,0.0,0.0,23.35,0.23703703703703705,0.37083333333333335,0.3523148148148148,,,,,3.0,,,,,,,,,33.0,,,,,,,,
|
12063.0,Oswaldo Cabrera,2025 Season,Reserve,S,0.0,0.4,0.46666667,0.13333333,0.0,0.0,0.0,0.0,0.0,0.0,18.5,2.8,6.45,5.0,10.0,10.55,16.85,0.0,7.55,1.0,2.7,1.4,2.5,1.2,12.9,8.6,0.2800925925925926,0.47037037037037044,0.2800925925925926,0.0,0.0,False,0.0,C,B,13.0,1.0,24.0,0.43478261,0.31884058,0.24637681,0.0,2.0,0.0,0.0,2.4,7.05,4.25,2.5,5.9,5.0,1.0,13.45,19.9,4.5,3.3,0.0,6.95,2.7,3.75,0.0,0.0,23.35,0.23703703703703705,0.37083333333333335,0.3523148148148148,,,,,3.0,,,,,,,,,33.0,,,,,,,,
|
||||||
@ -5797,7 +5797,7 @@ player_id,player_name,cardset_name,rarity,hand,variant,pull_rate_vl,center_rate_
|
|||||||
12471.0,Thomas Saggese,2025 Season,Reserve,R,0.0,0.21276596,0.38297872,0.40425532,1.05,4.0,0.0,0.0,1.4,4.2,13.15,0.0,6.6,5.0,0.0,1.9,27.1,5.0,13.0,1.0,0.0,4.8,7.35,1.45,6.0,5.0,0.2861111111111111,0.3037037037037037,0.42268518518518516,3.0,20.0,False,0.05555555555555555,C,A,10.0,3.0,24.0,0.35135135,0.31756757,0.33108108,0.0,1.0,0.0,0.0,3.5,10.55,4.5,2.55,6.0,5.0,0.0,9.1,28.9,9.0,3.0,0.0,0.0,3.45,3.0,0.0,0.0,18.45,0.27870370370370373,0.362962962962963,0.42268518518518516,,,,5.0,3.0,5.0,,,,,,,19.0,30.0,8.0,,,,,,,
|
12471.0,Thomas Saggese,2025 Season,Reserve,R,0.0,0.21276596,0.38297872,0.40425532,1.05,4.0,0.0,0.0,1.4,4.2,13.15,0.0,6.6,5.0,0.0,1.9,27.1,5.0,13.0,1.0,0.0,4.8,7.35,1.45,6.0,5.0,0.2861111111111111,0.3037037037037037,0.42268518518518516,3.0,20.0,False,0.05555555555555555,C,A,10.0,3.0,24.0,0.35135135,0.31756757,0.33108108,0.0,1.0,0.0,0.0,3.5,10.55,4.5,2.55,6.0,5.0,0.0,9.1,28.9,9.0,3.0,0.0,0.0,3.45,3.0,0.0,0.0,18.45,0.27870370370370373,0.362962962962963,0.42268518518518516,,,,5.0,3.0,5.0,,,,,,,19.0,30.0,8.0,,,,,,,
|
||||||
12472.0,Coby Mayo,2025 Season,Reserve,R,0.0,0.5483871,0.20967742,0.24193548,2.1,6.0,0.0,0.0,2.1,6.0,3.8,2.4,5.4,5.0,1.0,12.35,30.65,6.0,5.0,0.0,0.6,3.9,4.0,0.0,0.1,11.6,0.25277777777777777,0.3763888888888889,0.46944444444444444,3.0,20.0,False,0.05555555555555555,C,C,13.0,3.0,24.0,0.44444444,0.32478632,0.23076923,1.35,5.0,0.0,0.0,3.9,3.8,2.1,0.0,4.65,5.0,2.0,11.8,31.2,6.0,8.0,0.0,1.35,2.85,1.0,0.0,7.0,11.0,0.1925925925925926,0.32037037037037036,0.37083333333333335,,,5.0,,4.0,,,,,,,2.0,,65.0,,,,,,,,
|
12472.0,Coby Mayo,2025 Season,Reserve,R,0.0,0.5483871,0.20967742,0.24193548,2.1,6.0,0.0,0.0,2.1,6.0,3.8,2.4,5.4,5.0,1.0,12.35,30.65,6.0,5.0,0.0,0.6,3.9,4.0,0.0,0.1,11.6,0.25277777777777777,0.3763888888888889,0.46944444444444444,3.0,20.0,False,0.05555555555555555,C,C,13.0,3.0,24.0,0.44444444,0.32478632,0.23076923,1.35,5.0,0.0,0.0,3.9,3.8,2.1,0.0,4.65,5.0,2.0,11.8,31.2,6.0,8.0,0.0,1.35,2.85,1.0,0.0,7.0,11.0,0.1925925925925926,0.32037037037037036,0.37083333333333335,,,5.0,,4.0,,,,,,,2.0,,65.0,,,,,,,,
|
||||||
12473.0,Colton Cowser,2025 Season,Replacement,L,0.0,0.44230769,0.23076923,0.32692308,5.1,4.0,0.0,0.0,1.1,3.2,2.1,0.0,3.9,5.0,5.0,5.1,37.9,1.0,2.0,0.0,0.0,5.8,7.0,3.8,7.0,9.0,0.18425925925925926,0.2777777777777778,0.4212962962962963,3.0,20.0,True,0.19444444444444445,C,C,10.0,3.0,24.0,0.43537415,0.29931973,0.26530612,1.65,6.0,0.0,0.0,1.9,5.75,0.1,0.0,5.4,5.0,1.0,11.55,15.45,9.0,15.0,0.0,0.0,5.25,1.95,0.0,0.0,23.0,0.18796296296296297,0.30416666666666664,0.38796296296296295,,,,,,,2.0,3.0,,,,,,,,2.0,2.0,,0.0,,,
|
12473.0,Colton Cowser,2025 Season,Replacement,L,0.0,0.44230769,0.23076923,0.32692308,5.1,4.0,0.0,0.0,1.1,3.2,2.1,0.0,3.9,5.0,5.0,5.1,37.9,1.0,2.0,0.0,0.0,5.8,7.0,3.8,7.0,9.0,0.18425925925925926,0.2777777777777778,0.4212962962962963,3.0,20.0,True,0.19444444444444445,C,C,10.0,3.0,24.0,0.43537415,0.29931973,0.26530612,1.65,6.0,0.0,0.0,1.9,5.75,0.1,0.0,5.4,5.0,1.0,11.55,15.45,9.0,15.0,0.0,0.0,5.25,1.95,0.0,0.0,23.0,0.18796296296296297,0.30416666666666664,0.38796296296296295,,,,,,,2.0,3.0,,,,,,,,2.0,2.0,,0.0,,,
|
||||||
12474.0,Marcelo Mayer,2025 Season,Replacement,L,0.0,0.375,0.375,0.25,0.0,0.0,8.0,0.0,0.0,0.0,0.0,0.0,6.95,5.0,0.0,4.8,37.85,4.75,3.75,0.0,8.5,1.25,1.65,0.0,0.0,25.5,0.16157407407407406,0.20601851851851852,0.30972222222222223,0.0,0.0,False,0.0,C,C,15.0,3.0,24.0,0.38028169,0.36619718,0.25352113,1.65,5.0,0.0,0.0,6.2,6.15,2.7,0.0,5.4,5.0,0.0,8.3,27.55,1.35,5.1,0.0,8.85,2.25,3.2,0.0,9.8,9.5,0.25092592592592594,0.3277777777777778,0.48055555555555557,,,,3.0,3.0,,,,,,,,0.0,8.0,,,,,,,,
|
12474.0,Marcelo Mayer,2025 Season,Replacement,L,0.0,0.375,0.375,0.25,0.0,0.0,8.0,0.0,0.0,0.0,0.0,0.0,6.95,5.0,0.0,4.8,32.2,9.0,8.0,0.0,1.05,1.0,1.0,0.0,0.0,31.0,0.16157407407407406,0.20601851851851852,0.30972222222222223,0.0,0.0,False,0.0,C,C,15.0,3.0,24.0,0.38028169,0.36619718,0.25352113,1.65,5.0,0.0,0.0,6.2,6.15,2.7,0.0,5.4,5.0,0.0,8.3,32.7,1.0,5.0,0.0,0.6,2.2,3.0,0.0,9.1,14.0,0.25092592592592594,0.3277777777777778,0.48055555555555557,,,,3.0,3.0,,,,,,,,0.0,8.0,,,,,,,,
|
||||||
12475.0,Brady House,2025 Season,Replacement,R,0.0,0.35185185,0.33333333,0.31481481,0.0,0.0,0.0,0.0,2.8,8.35,3.9,0.0,7.85,5.0,0.0,3.25,33.75,7.0,4.0,0.0,0.0,5.65,5.15,8.3,5.0,8.0,0.2351851851851852,0.2652777777777778,0.3384259259259259,3.0,9.0,False,0.16666666666666666,C,B,12.0,3.0,24.0,0.32835821,0.37313433,0.29850746,0.0,4.0,0.0,0.0,2.1,6.05,3.9,0.0,9.9,5.0,0.0,4.75,15.25,16.0,5.0,0.0,1.1,3.95,3.0,14.0,2.0,12.0,0.2449074074074074,0.28888888888888886,0.37592592592592594,,,,,3.0,,,,,,,,,19.0,,,,,,,,
|
12475.0,Brady House,2025 Season,Replacement,R,0.0,0.35185185,0.33333333,0.31481481,0.0,0.0,0.0,0.0,2.8,8.35,3.9,0.0,7.85,5.0,0.0,3.25,33.75,7.0,4.0,0.0,0.0,5.65,5.15,8.3,5.0,8.0,0.2351851851851852,0.2652777777777778,0.3384259259259259,3.0,9.0,False,0.16666666666666666,C,B,12.0,3.0,24.0,0.32835821,0.37313433,0.29850746,0.0,4.0,0.0,0.0,2.1,6.05,3.9,0.0,9.9,5.0,0.0,4.75,15.25,16.0,5.0,0.0,1.1,3.95,3.0,14.0,2.0,12.0,0.2449074074074074,0.28888888888888886,0.37592592592592594,,,,,3.0,,,,,,,,,19.0,,,,,,,,
|
||||||
12476.0,Dalton Rushing,2025 Season,Replacement,L,0.0,0.54545455,0.27272727,0.18181818,0.0,0.0,0.0,0.0,0.0,0.0,4.25,0.0,8.5,5.0,4.0,13.1,27.9,13.0,5.0,0.0,0.5,2.0,4.0,0.0,6.75,14.0,0.1412037037037037,0.29953703703703705,0.1412037037037037,0.0,0.0,False,0.0,C,C,12.0,3.0,24.0,0.53125,0.265625,0.203125,1.2,5.0,0.0,0.0,1.9,5.7,5.95,0.0,3.2,5.0,0.0,7.95,42.05,6.0,5.0,1.0,0.8,1.3,2.8,0.0,8.15,5.0,0.2125,0.2861111111111111,0.38564814814814813,,3.0,3.0,,,,,,,,1.0,0.0,,,,,,,,-2.0,6.0,2.0
|
12476.0,Dalton Rushing,2025 Season,Replacement,L,0.0,0.54545455,0.27272727,0.18181818,0.0,0.0,0.0,0.0,0.0,0.0,4.25,0.0,8.5,5.0,4.0,13.1,27.9,13.0,5.0,0.0,0.5,2.0,4.0,0.0,6.75,14.0,0.1412037037037037,0.29953703703703705,0.1412037037037037,0.0,0.0,False,0.0,C,C,12.0,3.0,24.0,0.53125,0.265625,0.203125,1.2,5.0,0.0,0.0,1.9,5.7,5.95,0.0,3.2,5.0,0.0,7.95,42.05,6.0,5.0,1.0,0.8,1.3,2.8,0.0,8.15,5.0,0.2125,0.2861111111111111,0.38564814814814813,,3.0,3.0,,,,,,,,1.0,0.0,,,,,,,,-2.0,6.0,2.0
|
||||||
12477.0,Ryan Ritter,2025 Season,Reserve,R,0.0,0.36363636,0.39393939,0.24242424,0.0,0.0,0.0,0.0,7.8,7.75,6.1,3.75,8.5,5.0,3.0,3.2,25.8,10.0,4.0,0.0,0.5,2.25,1.0,0.0,6.1,13.25,0.337037037037037,0.39444444444444443,0.4810185185185185,3.0,12.0,False,0.08333333333333333,C,B,13.0,3.0,24.0,0.46938776,0.26530612,0.26530612,0.0,1.0,3.9,0.0,1.95,5.8,3.15,2.25,5.7,5.0,3.0,7.35,24.65,10.0,10.0,0.0,0.3,1.2,0.0,9.0,0.0,13.75,0.23842592592592593,0.33425925925925926,0.3962962962962963,,,,3.0,,3.0,,,,,,,6.0,,26.0,,,,,,,
|
12477.0,Ryan Ritter,2025 Season,Reserve,R,0.0,0.36363636,0.39393939,0.24242424,0.0,0.0,0.0,0.0,7.8,7.75,6.1,3.75,8.5,5.0,3.0,3.2,25.8,10.0,4.0,0.0,0.5,2.25,1.0,0.0,6.1,13.25,0.337037037037037,0.39444444444444443,0.4810185185185185,3.0,12.0,False,0.08333333333333333,C,B,13.0,3.0,24.0,0.46938776,0.26530612,0.26530612,0.0,1.0,3.9,0.0,1.95,5.8,3.15,2.25,5.7,5.0,3.0,7.35,24.65,10.0,10.0,0.0,0.3,1.2,0.0,9.0,0.0,13.75,0.23842592592592593,0.33425925925925926,0.3962962962962963,,,,3.0,,3.0,,,,,,,6.0,,26.0,,,,,,,
|
||||||
@ -5828,7 +5828,7 @@ player_id,player_name,cardset_name,rarity,hand,variant,pull_rate_vl,center_rate_
|
|||||||
12549.0,Christian Moore,2025 Season,Reserve,R,0.0,0.26923077,0.34615385,0.38461538,6.35,5.0,0.0,0.0,2.8,8.5,0.0,0.0,4.75,5.0,0.0,6.15,32.4,6.1,0.0,0.0,9.6,3.2,3.9,0.0,7.65,6.6,0.2537037037037037,0.3106481481481482,0.6041666666666666,3.0,20.0,False,0.08333333333333333,C,C,12.0,3.0,24.0,0.28947368,0.35526316,0.35526316,1.4,4.0,1.6,0.0,0.0,3.25,2.7,0.0,5.4,5.0,0.0,16.45,32.75,4.5,3.6,0.0,0.0,5.8,6.6,2.25,0.0,12.7,0.17453703703703705,0.32685185185185184,0.3287037037037037,,,,4.0,,,,,,,,,12.0,,,,,,,,,
|
12549.0,Christian Moore,2025 Season,Reserve,R,0.0,0.26923077,0.34615385,0.38461538,6.35,5.0,0.0,0.0,2.8,8.5,0.0,0.0,4.75,5.0,0.0,6.15,32.4,6.1,0.0,0.0,9.6,3.2,3.9,0.0,7.65,6.6,0.2537037037037037,0.3106481481481482,0.6041666666666666,3.0,20.0,False,0.08333333333333333,C,C,12.0,3.0,24.0,0.28947368,0.35526316,0.35526316,1.4,4.0,1.6,0.0,0.0,3.25,2.7,0.0,5.4,5.0,0.0,16.45,32.75,4.5,3.6,0.0,0.0,5.8,6.6,2.25,0.0,12.7,0.17453703703703705,0.32685185185185184,0.3287037037037037,,,,4.0,,,,,,,,,12.0,,,,,,,,,
|
||||||
12586.0,James Mccann,2025 Season,Starter,R,0.0,0.26470588,0.47058824,0.26470588,1.1,3.0,0.0,0.0,3.2,9.0,5.1,0.0,9.8,5.0,5.0,10.55,17.45,9.0,4.0,0.0,0.0,3.9,4.2,0.0,8.7,9.0,0.29814814814814816,0.44212962962962965,0.48333333333333334,0.0,0.0,False,0.0,C,B,10.0,1.0,24.0,0.39655172,0.32758621,0.27586207,1.7,7.0,0.0,0.0,1.9,5.4,3.75,2.25,5.4,5.0,3.0,5.95,16.05,9.0,8.0,0.0,0.6,4.9,4.0,3.35,7.0,13.75,0.24444444444444444,0.32731481481481484,0.4564814814814815,,3.0,,,,,,,,,1.0,,,,,,,,,1.0,0.0,3.0
|
12586.0,James Mccann,2025 Season,Starter,R,0.0,0.26470588,0.47058824,0.26470588,1.1,3.0,0.0,0.0,3.2,9.0,5.1,0.0,9.8,5.0,5.0,10.55,17.45,9.0,4.0,0.0,0.0,3.9,4.2,0.0,8.7,9.0,0.29814814814814816,0.44212962962962965,0.48333333333333334,0.0,0.0,False,0.0,C,B,10.0,1.0,24.0,0.39655172,0.32758621,0.27586207,1.7,7.0,0.0,0.0,1.9,5.4,3.75,2.25,5.4,5.0,3.0,5.95,16.05,9.0,8.0,0.0,0.6,4.9,4.0,3.35,7.0,13.75,0.24444444444444444,0.32731481481481484,0.4564814814814815,,3.0,,,,,,,,,1.0,,,,,,,,,1.0,0.0,3.0
|
||||||
12587.0,Dominic Smith,2025 Season,Reserve,L,0.0,0.47619048,0.23809524,0.28571429,0.0,0.0,0.0,0.0,3.25,9.55,1.75,0.0,6.35,5.0,5.0,4.75,23.25,5.0,3.0,0.0,1.65,5.45,8.0,0.0,8.0,18.0,0.21666666666666667,0.30694444444444446,0.3351851851851852,3.0,20.0,False,0.05555555555555555,C,B,9.0,2.0,24.0,0.43448276,0.39310345,0.17241379,1.1,5.0,0.0,0.0,2.8,8.4,5.4,0.0,10.7,5.0,0.0,9.8,22.2,1.0,12.0,0.0,0.3,2.5,4.0,4.8,5.0,8.0,0.30925925925925923,0.4,0.512962962962963,,,4.0,,,,,,,,,3.0,,,,,,,,,,
|
12587.0,Dominic Smith,2025 Season,Reserve,L,0.0,0.47619048,0.23809524,0.28571429,0.0,0.0,0.0,0.0,3.25,9.55,1.75,0.0,6.35,5.0,5.0,4.75,23.25,5.0,3.0,0.0,1.65,5.45,8.0,0.0,8.0,18.0,0.21666666666666667,0.30694444444444446,0.3351851851851852,3.0,20.0,False,0.05555555555555555,C,B,9.0,2.0,24.0,0.43448276,0.39310345,0.17241379,1.1,5.0,0.0,0.0,2.8,8.4,5.4,0.0,10.7,5.0,0.0,9.8,22.2,1.0,12.0,0.0,0.3,2.5,4.0,4.8,5.0,8.0,0.30925925925925923,0.4,0.512962962962963,,,4.0,,,,,,,,,3.0,,,,,,,,,,
|
||||||
12588.0,Rowdy Tellez,2025 Season,Replacement,L,0.0,0.3,0.4,0.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.7,0.0,6.0,16.4,42.05,0.0,0.0,1.0,10.6,1.9,1.65,6.8,15.9,0.0,0.05277777777777778,0.2601851851851852,0.05277777777777778,3.0,20.0,False,0.027777777777777776,C,D,8.0,1.0,24.0,0.37688442,0.34170854,0.28140704,2.2,8.0,0.0,0.0,1.7,5.4,3.2,0.0,5.9,5.0,0.0,7.2,24.75,2.25,5.1,0.0,9.7,4.75,5.7,8.6,4.65,3.9,0.23055555555555554,0.2972222222222222,0.46851851851851856,,,5.0,,,,,,,,,6.0,,,,,,,,,,
|
12588.0,Rowdy Tellez,2025 Season,Replacement,L,0.0,0.3,0.4,0.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.7,0.0,6.0,16.4,34.6,6.0,5.0,1.0,3.3,1.0,1.0,6.0,15.0,7.0,0.05277777777777778,0.2601851851851852,0.05277777777777778,3.0,20.0,False,0.027777777777777776,C,D,8.0,1.0,24.0,0.37688442,0.34170854,0.28140704,2.2,8.0,0.0,0.0,1.7,5.4,3.2,0.0,5.9,5.0,0.0,7.2,23.8,6.0,10.0,0.0,1.1,4.6,4.8,8.1,4.0,7.0,0.23055555555555557,0.2972222222222222,0.4685185185185185,,,5.0,,,,,,,,,6.0,,,,,,,,,,
|
||||||
12589.0,Andy Ibanez,2025 Season,Replacement,R,0.0,0.51456311,0.29126214,0.19417476,1.05,5.0,0.0,0.0,2.25,6.8,4.5,2.7,6.2,5.0,0.0,9.6,18.4,1.0,13.0,0.0,0.8,9.15,4.0,4.25,6.0,8.3,0.2638888888888889,0.3527777777777778,0.4462962962962963,3.0,13.0,True,0.16666666666666666,C,C,9.0,3.0,24.0,0.5,0.33333333,0.16666667,0.0,0.0,0.0,0.0,4.5,4.25,0.5,5.1,6.1,5.0,7.0,6.4,9.6,7.0,7.0,0.0,3.9,2.75,1.0,3.0,13.0,21.9,0.2125,0.3365740740740741,0.2935185185185185,,,3.0,3.0,2.0,,,,,,,0.0,0.0,15.0,,,,,,,,
|
12589.0,Andy Ibanez,2025 Season,Replacement,R,0.0,0.51456311,0.29126214,0.19417476,1.05,5.0,0.0,0.0,2.25,6.8,4.5,2.7,6.2,5.0,0.0,9.6,18.4,1.0,13.0,0.0,0.8,9.15,4.0,4.25,6.0,8.3,0.2638888888888889,0.3527777777777778,0.4462962962962963,3.0,13.0,True,0.16666666666666666,C,C,9.0,3.0,24.0,0.5,0.33333333,0.16666667,0.0,0.0,0.0,0.0,4.5,4.25,0.5,5.1,6.1,5.0,7.0,6.4,9.6,7.0,7.0,0.0,3.9,2.75,1.0,3.0,13.0,21.9,0.2125,0.3365740740740741,0.2935185185185185,,,3.0,3.0,2.0,,,,,,,0.0,0.0,15.0,,,,,,,,
|
||||||
12590.0,Andruw Monasterio,2025 Season,Starter,R,0.0,0.52941176,0.29411765,0.17647059,1.7,6.0,0.0,0.0,3.2,8.4,3.75,2.2,5.1,5.0,2.0,13.55,15.45,10.0,15.0,0.0,0.9,3.9,0.0,0.0,1.05,10.8,0.2763888888888889,0.4203703703703704,0.5143518518518518,3.0,20.0,False,0.05555555555555555,C,B,10.0,2.0,24.0,0.45,0.35,0.2,1.35,3.0,0.0,0.0,3.25,9.75,4.15,3.75,4.55,5.0,2.0,2.75,28.25,4.0,5.0,0.0,0.45,7.9,5.0,0.0,5.6,12.25,0.2851851851851852,0.32916666666666666,0.4847222222222222,,,3.0,3.0,3.0,3.0,,,,,,0.0,0.0,0.0,10.0,,,,,,,
|
12590.0,Andruw Monasterio,2025 Season,Starter,R,0.0,0.52941176,0.29411765,0.17647059,1.7,6.0,0.0,0.0,3.2,8.4,3.75,2.2,5.1,5.0,2.0,13.55,15.45,10.0,15.0,0.0,0.9,3.9,0.0,0.0,1.05,10.8,0.2763888888888889,0.4203703703703704,0.5143518518518518,3.0,20.0,False,0.05555555555555555,C,B,10.0,2.0,24.0,0.45,0.35,0.2,1.35,3.0,0.0,0.0,3.25,9.75,4.15,3.75,4.55,5.0,2.0,2.75,28.25,4.0,5.0,0.0,0.45,7.9,5.0,0.0,5.6,12.25,0.2851851851851852,0.32916666666666666,0.4847222222222222,,,3.0,3.0,3.0,3.0,,,,,,0.0,0.0,0.0,10.0,,,,,,,
|
||||||
12591.0,Andrew Knizner,2025 Season,Reserve,R,0.0,0.31818182,0.36363636,0.31818182,1.9,9.0,0.0,0.0,0.0,0.0,6.8,4.2,9.4,5.0,0.0,0.0,18.0,14.0,2.0,0.0,0.6,3.1,2.0,0.0,14.2,17.8,0.2712962962962963,0.2712962962962963,0.44907407407407407,0.0,0.0,False,0.0,C,D,8.0,2.0,24.0,0.36170213,0.29787234,0.34042553,0.0,0.0,4.25,0.0,2.2,2.1,3.75,2.25,5.4,5.0,4.0,14.5,13.5,7.0,10.0,0.0,0.6,1.9,2.0,0.0,11.8,17.75,0.20787037037037037,0.37916666666666665,0.3263888888888889,,4.0,,,,,,,,,7.0,,,,,,,,,0.0,0.0,14.0
|
12591.0,Andrew Knizner,2025 Season,Reserve,R,0.0,0.31818182,0.36363636,0.31818182,1.9,9.0,0.0,0.0,0.0,0.0,6.8,4.2,9.4,5.0,0.0,0.0,18.0,14.0,2.0,0.0,0.6,3.1,2.0,0.0,14.2,17.8,0.2712962962962963,0.2712962962962963,0.44907407407407407,0.0,0.0,False,0.0,C,D,8.0,2.0,24.0,0.36170213,0.29787234,0.34042553,0.0,0.0,4.25,0.0,2.2,2.1,3.75,2.25,5.4,5.0,4.0,14.5,13.5,7.0,10.0,0.0,0.6,1.9,2.0,0.0,11.8,17.75,0.20787037037037037,0.37916666666666665,0.3263888888888889,,4.0,,,,,,,,,7.0,,,,,,,,,0.0,0.0,14.0
|
||||||
@ -5866,7 +5866,7 @@ player_id,player_name,cardset_name,rarity,hand,variant,pull_rate_vl,center_rate_
|
|||||||
12661.0,Michael Helman,2025 Season,Replacement,R,0.0,0.66666667,0.16666667,0.16666667,1.4,8.0,0.0,0.0,1.65,4.75,1.35,0.0,1.75,5.0,3.0,4.8,28.2,5.0,5.0,0.0,3.25,13.85,4.0,0.0,6.0,11.0,0.16111111111111112,0.23333333333333334,0.37037037037037035,3.0,20.0,True,0.19444444444444445,C,C,11.0,2.0,24.0,0.53333333,0.31111111,0.15555556,1.1,5.0,2.75,0.0,4.75,4.75,4.5,6.65,2.25,5.0,0.0,10.8,22.2,5.0,6.0,0.0,0.75,3.15,1.0,0.0,12.0,10.35,0.29398148148148145,0.3939814814814815,0.5328703703703703,,,,,,,,2.0,,,,,,,,,0.0,,0.0,,,
|
12661.0,Michael Helman,2025 Season,Replacement,R,0.0,0.66666667,0.16666667,0.16666667,1.4,8.0,0.0,0.0,1.65,4.75,1.35,0.0,1.75,5.0,3.0,4.8,28.2,5.0,5.0,0.0,3.25,13.85,4.0,0.0,6.0,11.0,0.16111111111111112,0.23333333333333334,0.37037037037037035,3.0,20.0,True,0.19444444444444445,C,C,11.0,2.0,24.0,0.53333333,0.31111111,0.15555556,1.1,5.0,2.75,0.0,4.75,4.75,4.5,6.65,2.25,5.0,0.0,10.8,22.2,5.0,6.0,0.0,0.75,3.15,1.0,0.0,12.0,10.35,0.29398148148148145,0.3939814814814815,0.5328703703703703,,,,,,,,2.0,,,,,,,,,0.0,,0.0,,,
|
||||||
12662.0,James Outman,2025 Season,Replacement,L,0.0,0.42857143,0.33333333,0.23809524,1.05,3.0,0.0,0.0,2.2,2.1,0.0,3.25,2.2,0.0,0.0,9.25,43.45,4.2,0.0,0.0,13.35,2.2,3.2,0.0,0.0,18.55,0.1138888888888889,0.19953703703703707,0.22453703703703703,3.0,20.0,False,0.05555555555555555,C,D,12.0,2.0,24.0,0.46,0.38,0.16,4.2,3.0,1.5,0.0,1.5,4.25,0.0,0.0,4.8,0.0,3.0,10.45,41.75,0.0,5.85,0.0,7.05,3.4,6.35,0.0,5.2,5.7,0.16435185185185186,0.28888888888888886,0.4037037037037037,,,,,,,3.0,4.0,3.0,,,,,,,2.0,2.0,2.0,0.0,,,
|
12662.0,James Outman,2025 Season,Replacement,L,0.0,0.42857143,0.33333333,0.23809524,1.05,3.0,0.0,0.0,2.2,2.1,0.0,3.25,2.2,0.0,0.0,9.25,43.45,4.2,0.0,0.0,13.35,2.2,3.2,0.0,0.0,18.55,0.1138888888888889,0.19953703703703707,0.22453703703703703,3.0,20.0,False,0.05555555555555555,C,D,12.0,2.0,24.0,0.46,0.38,0.16,4.2,3.0,1.5,0.0,1.5,4.25,0.0,0.0,4.8,0.0,3.0,10.45,41.75,0.0,5.85,0.0,7.05,3.4,6.35,0.0,5.2,5.7,0.16435185185185186,0.28888888888888886,0.4037037037037037,,,,,,,3.0,4.0,3.0,,,,,,,2.0,2.0,2.0,0.0,,,
|
||||||
12663.0,Nate Eaton,2025 Season,Starter,R,0.0,0.47058824,0.35294118,0.17647059,0.0,0.0,0.0,0.0,3.2,9.35,6.15,9.25,3.2,5.0,3.0,10.2,22.8,4.0,7.0,0.0,0.8,3.65,2.0,0.0,1.65,16.75,0.31157407407407406,0.4337962962962963,0.42777777777777776,3.0,16.0,True,0.3611111111111111,C,A,15.0,2.0,24.0,0.4,0.36666667,0.23333333,1.05,5.0,0.0,0.0,2.7,7.95,6.5,9.8,3.25,5.0,0.0,6.3,22.7,3.0,2.0,0.0,1.75,4.0,2.0,0.0,8.8,16.2,0.33564814814814814,0.3939814814814815,0.5328703703703703,,,,,4.0,,3.0,3.0,3.0,,,,,0.0,,0.0,0.0,0.0,-1.0,,,
|
12663.0,Nate Eaton,2025 Season,Starter,R,0.0,0.47058824,0.35294118,0.17647059,0.0,0.0,0.0,0.0,3.2,9.35,6.15,9.25,3.2,5.0,3.0,10.2,22.8,4.0,7.0,0.0,0.8,3.65,2.0,0.0,1.65,16.75,0.31157407407407406,0.4337962962962963,0.42777777777777776,3.0,16.0,True,0.3611111111111111,C,A,15.0,2.0,24.0,0.4,0.36666667,0.23333333,1.05,5.0,0.0,0.0,2.7,7.95,6.5,9.8,3.25,5.0,0.0,6.3,22.7,3.0,2.0,0.0,1.75,4.0,2.0,0.0,8.8,16.2,0.33564814814814814,0.3939814814814815,0.5328703703703703,,,,,4.0,,3.0,3.0,3.0,,,,,0.0,,0.0,0.0,0.0,-1.0,,,
|
||||||
12664.0,Cody Freeman,2025 Season,Replacement,R,0.0,0.41025641,0.23076923,0.35897436,1.05,6.0,0.0,0.0,3.5,3.5,2.2,0.0,4.25,5.0,0.0,2.75,17.15,3.75,3.75,0.0,18.8,3.3,3.2,10.45,8.95,10.4,0.18518518518518517,0.21064814814814814,0.3625,3.0,7.0,False,0.1111111111111111,C,C,12.0,3.0,24.0,0.43103448,0.36206897,0.20689655,1.05,3.0,0.0,0.0,1.9,5.7,0.0,2.4,13.65,5.0,0.0,7.1,14.45,9.15,5.1,0.0,7.65,3.6,2.25,0.0,0.0,26.0,0.2657407407407407,0.3314814814814815,0.4069444444444444,,,,3.0,3.0,,,,3.0,,,,19.0,0.0,,,,0.0,0.0,,,
|
12664.0,Cody Freeman,2025 Season,Replacement,R,0.0,0.41025641,0.23076923,0.35897436,1.05,6.0,0.0,0.0,3.5,3.5,1.5,0.0,4.95,5.0,0.0,2.75,24.25,8.0,9.0,0.0,1.05,3.45,3.0,10.0,8.0,13.0,0.18518518518518517,0.21064814814814814,0.3625,3.0,7.0,False,0.1111111111111111,C,C,12.0,3.0,24.0,0.43103448,0.36206897,0.20689655,1.05,3.0,0.0,0.0,1.9,5.7,0.1,2.4,13.65,5.0,0.0,7.1,7.9,13.0,9.0,0.0,1.35,5.25,2.0,0.0,0.0,29.6,0.26666666666666666,0.33240740740740743,0.4078703703703704,,,,3.0,3.0,,,,3.0,,,,19.0,0.0,,,,0.0,0.0,,,
|
||||||
12665.0,Nasim Nunez,2025 Season,Starter,S,0.0,0.25925926,0.44444444,0.2962963,7.0,4.0,0.0,0.0,1.5,4.65,8.2,0.0,4.2,5.0,0.0,18.5,5.5,8.0,2.0,1.0,1.8,3.35,3.0,3.3,13.0,14.0,0.27824074074074073,0.449537037037037,0.5851851851851851,3.0,16.0,True,0.4166666666666667,C,C,15.0,2.0,24.0,0.24324324,0.40540541,0.35135135,4.2,3.0,0.0,0.0,0.0,3.9,0.0,0.0,11.4,5.0,0.0,6.85,28.15,10.0,3.0,0.0,0.6,3.9,2.0,0.0,0.0,26.0,0.2175925925925926,0.2810185185185185,0.41203703703703703,,,,3.0,,3.0,,3.0,,,,,0.0,,0.0,,0.0,,0.0,,,
|
12665.0,Nasim Nunez,2025 Season,Starter,S,0.0,0.25925926,0.44444444,0.2962963,7.0,4.0,0.0,0.0,1.5,4.65,8.2,0.0,4.2,5.0,0.0,18.5,5.5,8.0,2.0,1.0,1.8,3.35,3.0,3.3,13.0,14.0,0.27824074074074073,0.449537037037037,0.5851851851851851,3.0,16.0,True,0.4166666666666667,C,C,15.0,2.0,24.0,0.24324324,0.40540541,0.35135135,4.2,3.0,0.0,0.0,0.0,3.9,0.0,0.0,11.4,5.0,0.0,6.85,28.15,10.0,3.0,0.0,0.6,3.9,2.0,0.0,0.0,26.0,0.2175925925925926,0.2810185185185185,0.41203703703703703,,,,3.0,,3.0,,3.0,,,,,0.0,,0.0,,0.0,,0.0,,,
|
||||||
12666.0,Nick Yorke,2025 Season,Replacement,R,0.0,0.35,0.3,0.35,0.0,0.0,0.0,0.0,4.5,12.8,6.9,0.0,14.0,5.0,0.0,5.7,23.3,5.0,10.0,0.0,0.0,3.2,3.0,0.0,3.6,11.0,0.3768518518518518,0.42962962962962964,0.5370370370370371,3.0,20.0,False,0.05555555555555555,C,C,17.0,3.0,24.0,0.41176471,0.29411765,0.29411765,1.4,3.0,0.0,0.0,1.2,3.6,3.2,0.0,5.7,5.0,0.0,5.7,29.3,6.0,6.0,0.0,0.3,4.0,3.0,0.0,13.6,17.0,0.17685185185185184,0.22962962962962963,0.30185185185185187,,,2.0,3.0,,,,,3.0,,,0.0,0.0,,,,,0.0,0.0,,,
|
12666.0,Nick Yorke,2025 Season,Replacement,R,0.0,0.35,0.3,0.35,0.0,0.0,0.0,0.0,4.5,12.8,6.9,0.0,14.0,5.0,0.0,5.7,23.3,5.0,10.0,0.0,0.0,3.2,3.0,0.0,3.6,11.0,0.3768518518518518,0.42962962962962964,0.5370370370370371,3.0,20.0,False,0.05555555555555555,C,C,17.0,3.0,24.0,0.41176471,0.29411765,0.29411765,1.4,3.0,0.0,0.0,1.2,3.6,3.2,0.0,5.7,5.0,0.0,5.7,29.3,6.0,6.0,0.0,0.3,4.0,3.0,0.0,13.6,17.0,0.17685185185185184,0.22962962962962963,0.30185185185185187,,,2.0,3.0,,,,,3.0,,,0.0,0.0,,,,,0.0,0.0,,,
|
||||||
12667.0,David Hamilton,2025 Season,Replacement,L,0.0,0.53846154,0.30769231,0.15384615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.35,5.0,11.0,0.0,31.0,5.0,16.0,0.0,1.65,1.0,4.0,0.0,0.0,22.0,0.12824074074074074,0.2300925925925926,0.12824074074074074,9.0,12.0,True,0.6666666666666666,C,D,14.0,1.0,24.0,0.41666667,0.325,0.25833333,1.05,6.0,1.35,0.0,1.2,3.6,4.45,0.0,5.4,5.0,0.0,9.7,29.3,1.0,9.0,0.0,0.6,2.4,3.95,0.0,9.0,15.0,0.20879629629629629,0.2986111111111111,0.3907407407407407,,,,1.0,,3.0,,,,,,,19.0,,19.0,,,,,,,
|
12667.0,David Hamilton,2025 Season,Replacement,L,0.0,0.53846154,0.30769231,0.15384615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.35,5.0,11.0,0.0,31.0,5.0,16.0,0.0,1.65,1.0,4.0,0.0,0.0,22.0,0.12824074074074074,0.2300925925925926,0.12824074074074074,9.0,12.0,True,0.6666666666666666,C,D,14.0,1.0,24.0,0.41666667,0.325,0.25833333,1.05,6.0,1.35,0.0,1.2,3.6,4.45,0.0,5.4,5.0,0.0,9.7,29.3,1.0,9.0,0.0,0.6,2.4,3.95,0.0,9.0,15.0,0.20879629629629629,0.2986111111111111,0.3907407407407407,,,,1.0,,3.0,,,,,,,19.0,,19.0,,,,,,,
|
||||||
@ -5884,7 +5884,7 @@ player_id,player_name,cardset_name,rarity,hand,variant,pull_rate_vl,center_rate_
|
|||||||
12724.0,Alfonso Soriano,2005 Live,Starter,R,0.0,0.27586,0.44828,0.27586,1.9,6.0,0.0,0.0,4.2,4.2,5.1,7.4,2.5,5.0,0.0,9.6,25.4,3.0,7.0,0.0,2.5,1.9,2.0,0.0,17.3,3.0,0.2851851851851852,0.37407407407407406,0.49907407407407406,14.0,17.0,True,0.2222222222222222,D,C,11.0,1.0,27.0,0.26582,0.16456,0.56962,1.05,6.0,0.0,0.0,6.5,6.55,5.75,0.0,3.2,5.0,0.0,3.25,23.75,11.0,9.0,1.0,0.8,2.45,4.95,2.75,11.0,4.0,0.26435185185185184,0.29444444444444445,0.4976851851851852,,,,5.0,,,,,,,,,19.0,,,,,,,,,
|
12724.0,Alfonso Soriano,2005 Live,Starter,R,0.0,0.27586,0.44828,0.27586,1.9,6.0,0.0,0.0,4.2,4.2,5.1,7.4,2.5,5.0,0.0,9.6,25.4,3.0,7.0,0.0,2.5,1.9,2.0,0.0,17.3,3.0,0.2851851851851852,0.37407407407407406,0.49907407407407406,14.0,17.0,True,0.2222222222222222,D,C,11.0,1.0,27.0,0.26582,0.16456,0.56962,1.05,6.0,0.0,0.0,6.5,6.55,5.75,0.0,3.2,5.0,0.0,3.25,23.75,11.0,9.0,1.0,0.8,2.45,4.95,2.75,11.0,4.0,0.26435185185185184,0.29444444444444445,0.4976851851851852,,,,5.0,,,,,,,,,19.0,,,,,,,,,
|
||||||
12725.0,Hank Blalock,2005 Live,All-Star,L,0.0,0.25,0.55,0.2,7.4,5.0,0.0,0.0,1.7,5.1,9.4,0.0,4.8,5.0,0.0,8.95,24.05,5.0,6.0,1.0,1.2,2.9,3.6,0.0,14.9,2.0,0.30925925925925923,0.3921296296296296,0.6472222222222223,3.0,20.0,False,0.027777777777777776,D,C,8.0,2.0,27.0,0.2973,0.14865,0.55405,1.05,4.0,0.0,0.0,6.75,6.75,3.25,5.1,1.5,5.0,0.0,18.75,15.25,3.0,9.0,0.0,3.5,2.2,1.0,2.0,17.9,2.0,0.2675925925925926,0.4412037037037037,0.4773148148148148,,,,,5.0,,,,,,,,,13.0,,,,,,,,
|
12725.0,Hank Blalock,2005 Live,All-Star,L,0.0,0.25,0.55,0.2,7.4,5.0,0.0,0.0,1.7,5.1,9.4,0.0,4.8,5.0,0.0,8.95,24.05,5.0,6.0,1.0,1.2,2.9,3.6,0.0,14.9,2.0,0.30925925925925923,0.3921296296296296,0.6472222222222223,3.0,20.0,False,0.027777777777777776,D,C,8.0,2.0,27.0,0.2973,0.14865,0.55405,1.05,4.0,0.0,0.0,6.75,6.75,3.25,5.1,1.5,5.0,0.0,18.75,15.25,3.0,9.0,0.0,3.5,2.2,1.0,2.0,17.9,2.0,0.2675925925925926,0.4412037037037037,0.4773148148148148,,,,,5.0,,,,,,,,,13.0,,,,,,,,
|
||||||
12726.0,Michael Young,2005 Live,Starter,R,0.0,0.1,0.6,0.3,1.05,5.0,6.55,0.0,1.5,4.75,3.2,0.0,1.6,0.0,0.0,15.55,11.45,12.0,3.0,1.0,2.4,6.25,8.95,2.75,6.0,15.0,0.19583333333333333,0.3398148148148148,0.4736111111111111,3.0,14.0,False,0.05555555555555555,D,C,11.0,2.0,27.0,0.24419,0.16279,0.59302,1.2,4.0,2.7,0.0,2.75,2.7,6.55,9.8,3.3,5.0,0.0,8.85,11.15,12.0,9.0,0.0,2.7,0.3,2.8,1.0,22.2,0.0,0.3101851851851852,0.3921296296296296,0.49953703703703706,,,,,,5.0,,,,,,,,,18.0,,,,,,,
|
12726.0,Michael Young,2005 Live,Starter,R,0.0,0.1,0.6,0.3,1.05,5.0,6.55,0.0,1.5,4.75,3.2,0.0,1.6,0.0,0.0,15.55,11.45,12.0,3.0,1.0,2.4,6.25,8.95,2.75,6.0,15.0,0.19583333333333333,0.3398148148148148,0.4736111111111111,3.0,14.0,False,0.05555555555555555,D,C,11.0,2.0,27.0,0.24419,0.16279,0.59302,1.2,4.0,2.7,0.0,2.75,2.7,6.55,9.8,3.3,5.0,0.0,8.85,11.15,12.0,9.0,0.0,2.7,0.3,2.8,1.0,22.2,0.0,0.3101851851851852,0.3921296296296296,0.49953703703703706,,,,,,5.0,,,,,,,,,18.0,,,,,,,
|
||||||
12727.0,Mark Teixeira,2005 Live,Reserve,R,0.0,0.20833,0.58333,0.20834,0.0,0.0,0.0,0.0,4.5,4.2,2.7,4.2,1.1,5.0,5.0,13.5,29.5,7.0,7.0,0.0,0.9,1.8,1.0,0.0,20.6,0.0,0.17777777777777778,0.3490740740740741,0.25833333333333336,3.0,20.0,False,0.027777777777777776,D,D,12.0,1.0,27.0,0.15,0.23333,0.61667,7.35,5.0,0.0,0.0,2.1,6.1,8.0,0.0,4.2,5.0,2.0,5.7,9.3,10.0,12.0,1.0,1.8,3.9,1.65,3.9,4.0,15.0,0.30324074074074076,0.37453703703703706,0.6527777777777778,,,1.0,,,,,,,,,2.0,,,,,,,,,,
|
12727.0,Mark Teixeira,2005 Live,Reserve,S,0.0,0.20833,0.58333,0.20834,0.0,0.0,0.0,0.0,4.5,4.2,2.7,4.2,1.1,5.0,5.0,13.5,27.5,7.0,9.0,0.0,0.9,1.8,1.0,0.0,20.6,0.0,0.17777777777777778,0.3490740740740741,0.25833333333333336,3.0,20.0,False,0.027777777777777776,D,D,12.0,1.0,27.0,0.15,0.23333,0.61667,7.35,5.0,0.0,0.0,2.3,5.9,8.0,0.0,4.2,5.0,2.0,5.7,4.3,1.0,20.0,1.0,1.8,0.75,0.0,2.7,5.0,26.0,0.30324074074074076,0.37453703703703706,0.6527777777777778,,,1.0,,,,,,,,,2.0,,,,,,,,,,
|
||||||
12728.0,Richard Hidalgo,2005 Live,Replacement,R,0.0,0.33333,0.33333,0.33334,4.25,3.0,0.0,0.0,3.75,3.75,3.25,3.9,2.55,5.0,5.0,5.8,30.2,10.0,7.0,0.0,0.45,1.0,1.0,0.0,18.1,0.0,0.23564814814814813,0.33564814814814814,0.4648148148148148,1.0,4.0,False,0.05555555555555555,D,D,11.0,2.0,27.0,0.26923,0.13462,0.59615,1.05,3.0,0.0,0.0,1.95,1.95,2.25,3.4,1.2,5.0,0.0,9.1,26.9,11.0,5.0,0.0,2.8,2.05,3.95,0.0,22.4,5.0,0.14629629629629629,0.23055555555555557,0.25324074074074077,,,,,,,,3.0,2.0,,,,,,,,2.0,2.0,0.0,,,
|
12728.0,Richard Hidalgo,2005 Live,Replacement,R,0.0,0.33333,0.33333,0.33334,4.25,3.0,0.0,0.0,3.75,3.75,3.25,3.9,2.55,5.0,5.0,5.8,30.2,10.0,7.0,0.0,0.45,1.0,1.0,0.0,18.1,0.0,0.23564814814814813,0.33564814814814814,0.4648148148148148,1.0,4.0,False,0.05555555555555555,D,D,11.0,2.0,27.0,0.26923,0.13462,0.59615,1.05,3.0,0.0,0.0,1.95,1.95,2.25,3.4,1.2,5.0,0.0,9.1,26.9,11.0,5.0,0.0,2.8,2.05,3.95,0.0,22.4,5.0,0.14629629629629629,0.23055555555555557,0.25324074074074077,,,,,,,,3.0,2.0,,,,,,,,2.0,2.0,0.0,,,
|
||||||
12729.0,Darin Erstad,2005 Live,Reserve,L,0.0,0.125,0.59375,0.28125,0.0,0.0,0.0,0.0,5.8,5.8,3.2,4.75,1.35,5.0,0.0,4.25,25.75,8.0,10.0,0.0,1.65,4.2,3.0,0.0,21.25,4.0,0.21666666666666667,0.25601851851851853,0.32407407407407407,3.0,14.0,False,0.08333333333333333,D,B,12.0,3.0,27.0,0.18987,0.24051,0.56962,1.05,4.0,2.1,0.0,6.95,6.95,5.35,7.7,2.75,5.0,0.0,9.5,11.5,12.0,5.0,0.0,2.25,2.0,1.0,0.0,20.9,2.0,0.3458333333333333,0.4337962962962963,0.5981481481481481,,,1.0,,,,,,,,,3.0,,,,,,,,,,
|
12729.0,Darin Erstad,2005 Live,Reserve,L,0.0,0.125,0.59375,0.28125,0.0,0.0,0.0,0.0,5.8,5.8,3.2,4.75,1.35,5.0,0.0,4.25,25.75,8.0,10.0,0.0,1.65,4.2,3.0,0.0,21.25,4.0,0.21666666666666667,0.25601851851851853,0.32407407407407407,3.0,14.0,False,0.08333333333333333,D,B,12.0,3.0,27.0,0.18987,0.24051,0.56962,1.05,4.0,2.1,0.0,6.95,6.95,5.35,7.7,2.75,5.0,0.0,9.5,11.5,12.0,5.0,0.0,2.25,2.0,1.0,0.0,20.9,2.0,0.3458333333333333,0.4337962962962963,0.5981481481481481,,,1.0,,,,,,,,,3.0,,,,,,,,,,
|
||||||
12730.0,Vladimir Guerrero,2005 Live,MVP,R,0.0,0.3125,0.375,0.3125,8.2,6.0,0.0,0.0,1.9,5.75,6.1,2.4,0.0,5.0,0.0,10.8,13.2,1.0,6.0,0.0,0.0,6.25,6.8,0.0,28.6,0.0,0.2763888888888889,0.3763888888888889,0.6583333333333333,10.0,20.0,False,0.1111111111111111,D,A,12.0,1.0,27.0,0.27083,0.125,0.60417,1.65,6.0,2.5,0.0,7.1,7.05,12.8,5.1,1.4,5.0,2.0,4.85,9.15,6.0,12.0,1.0,2.6,3.3,2.0,0.6,6.9,9.0,0.3990740740740741,0.4625,0.7055555555555556,,,,,,,,,1.0,,,,,,,,,2.0,0.0,,,
|
12730.0,Vladimir Guerrero,2005 Live,MVP,R,0.0,0.3125,0.375,0.3125,8.2,6.0,0.0,0.0,1.9,5.75,6.1,2.4,0.0,5.0,0.0,10.8,13.2,1.0,6.0,0.0,0.0,6.25,6.8,0.0,28.6,0.0,0.2763888888888889,0.3763888888888889,0.6583333333333333,10.0,20.0,False,0.1111111111111111,D,A,12.0,1.0,27.0,0.27083,0.125,0.60417,1.65,6.0,2.5,0.0,7.1,7.05,12.8,5.1,1.4,5.0,2.0,4.85,9.15,6.0,12.0,1.0,2.6,3.3,2.0,0.6,6.9,9.0,0.3990740740740741,0.4625,0.7055555555555556,,,,,,,,,1.0,,,,,,,,,2.0,0.0,,,
|
||||||
@ -5892,7 +5892,7 @@ player_id,player_name,cardset_name,rarity,hand,variant,pull_rate_vl,center_rate_
|
|||||||
12732.0,Steve Finley,2005 Live,Replacement,L,0.0,0.4,0.5,0.1,1.05,5.0,0.0,0.0,5.4,5.35,0.6,3.2,1.1,0.0,9.0,12.6,11.4,10.0,5.0,1.0,0.9,0.6,2.0,0.0,32.8,1.0,0.17777777777777778,0.37777777777777777,0.37592592592592594,3.0,11.0,True,0.1388888888888889,D,D,12.0,1.0,27.0,0.28125,0.23438,0.48437,1.35,7.0,0.0,0.0,1.4,1.4,0.0,2.7,0.0,5.0,0.0,7.75,20.25,7.0,10.0,0.0,0.0,4.85,3.0,3.0,27.3,6.0,0.11898148148148148,0.19074074074074074,0.2796296296296296,,,,,,,,5.0,,,,,,,,,3.0,,2.0,,,
|
12732.0,Steve Finley,2005 Live,Replacement,L,0.0,0.4,0.5,0.1,1.05,5.0,0.0,0.0,5.4,5.35,0.6,3.2,1.1,0.0,9.0,12.6,11.4,10.0,5.0,1.0,0.9,0.6,2.0,0.0,32.8,1.0,0.17777777777777778,0.37777777777777777,0.37592592592592594,3.0,11.0,True,0.1388888888888889,D,D,12.0,1.0,27.0,0.28125,0.23438,0.48437,1.35,7.0,0.0,0.0,1.4,1.4,0.0,2.7,0.0,5.0,0.0,7.75,20.25,7.0,10.0,0.0,0.0,4.85,3.0,3.0,27.3,6.0,0.11898148148148148,0.19074074074074074,0.2796296296296296,,,,,,,,5.0,,,,,,,,,3.0,,2.0,,,
|
||||||
12733.0,Kevin Mench,2005 Live,Starter,R,0.0,0.26667,0.46667,0.26666,0.0,0.0,6.9,0.0,3.4,3.5,0.6,0.0,4.75,0.0,0.0,5.9,18.1,11.0,13.0,0.0,0.25,6.6,6.0,0.0,19.0,9.0,0.17731481481481481,0.23194444444444445,0.36898148148148147,3.0,8.0,False,0.05555555555555555,D,C,11.0,2.0,27.0,0.2381,0.22222,0.53968,5.9,4.0,0.0,0.0,5.1,5.1,12.9,4.2,2.55,5.0,2.0,10.75,8.25,10.0,11.0,1.0,0.45,0.0,2.0,0.0,17.8,0.0,0.3726851851851852,0.49074074074074076,0.6865740740740741,,,,,,,2.0,,3.0,,,,,,,3.0,,3.0,0.0,,,
|
12733.0,Kevin Mench,2005 Live,Starter,R,0.0,0.26667,0.46667,0.26666,0.0,0.0,6.9,0.0,3.4,3.5,0.6,0.0,4.75,0.0,0.0,5.9,18.1,11.0,13.0,0.0,0.25,6.6,6.0,0.0,19.0,9.0,0.17731481481481481,0.23194444444444445,0.36898148148148147,3.0,8.0,False,0.05555555555555555,D,C,11.0,2.0,27.0,0.2381,0.22222,0.53968,5.9,4.0,0.0,0.0,5.1,5.1,12.9,4.2,2.55,5.0,2.0,10.75,8.25,10.0,11.0,1.0,0.45,0.0,2.0,0.0,17.8,0.0,0.3726851851851852,0.49074074074074076,0.6865740740740741,,,,,,,2.0,,3.0,,,,,,,3.0,,3.0,0.0,,,
|
||||||
12734.0,Orlando Cabrera,2005 Live,Starter,R,0.0,0.25926,0.48148,0.25926,0.0,0.0,7.4,0.0,3.75,3.75,3.25,3.9,2.55,5.0,0.0,10.8,6.2,19.0,12.0,0.0,0.45,2.25,2.0,2.6,21.1,2.0,0.25092592592592594,0.3509259259259259,0.45740740740740743,13.0,18.0,True,0.16666666666666666,D,C,12.0,1.0,27.0,0.26761,0.1831,0.54929,1.65,6.0,0.0,0.0,5.7,5.75,7.1,2.2,1.4,5.0,0.0,10.65,16.35,6.0,7.0,1.0,0.6,1.6,2.0,0.0,23.0,5.0,0.2712962962962963,0.3699074074074074,0.5064814814814815,,,,,,1.0,,,,,,,,,8.0,,,,,,,
|
12734.0,Orlando Cabrera,2005 Live,Starter,R,0.0,0.25926,0.48148,0.25926,0.0,0.0,7.4,0.0,3.75,3.75,3.25,3.9,2.55,5.0,0.0,10.8,6.2,19.0,12.0,0.0,0.45,2.25,2.0,2.6,21.1,2.0,0.25092592592592594,0.3509259259259259,0.45740740740740743,13.0,18.0,True,0.16666666666666666,D,C,12.0,1.0,27.0,0.26761,0.1831,0.54929,1.65,6.0,0.0,0.0,5.7,5.75,7.1,2.2,1.4,5.0,0.0,10.65,16.35,6.0,7.0,1.0,0.6,1.6,2.0,0.0,23.0,5.0,0.2712962962962963,0.3699074074074074,0.5064814814814815,,,,,,1.0,,,,,,,,,8.0,,,,,,,
|
||||||
12735.0,Chone Figgins,2005 Live,Starter,R,0.0,0.33333,0.33333,0.33334,0.0,0.0,5.75,0.0,5.7,5.1,0.3,3.2,1.05,0.0,0.0,9.6,38.4,3.0,13.0,0.0,1.95,2.25,0.9,0.0,17.8,0.0,0.19537037037037036,0.28425925925925927,0.40185185185185185,10.0,13.0,True,0.4722222222222222,B,A,13.0,1.0,27.0,0.15,0.11667,0.73333,1.4,5.0,3.2,0.0,4.85,4.7,8.0,12.0,4.2,5.0,0.0,5.7,16.3,2.0,18.0,0.0,1.8,0.0,1.9,0.0,11.95,2.0,0.4013888888888889,0.45416666666666666,0.6574074074074074,,,,4.0,2.0,3.0,3.0,3.0,3.0,,,,20.0,11.0,0.0,2.0,2.0,2.0,0.0,,,
|
12735.0,Chone Figgins,2005 Live,Starter,S,0.0,0.33333,0.33333,0.33334,0.0,0.0,5.75,0.0,5.7,5.1,2.55,3.2,1.05,0.0,0.0,9.6,26.4,7.0,20.0,0.0,1.95,1.9,0.0,0.0,17.8,0.0,0.2162037037037037,0.3050925925925926,0.42268518518518516,10.0,13.0,True,0.4722222222222222,B,A,13.0,1.0,27.0,0.15,0.11667,0.73333,1.4,5.0,3.2,0.0,4.85,4.7,8.0,12.0,4.2,5.0,0.0,5.7,18.3,1.0,25.0,0.0,1.8,0.0,1.9,0.0,5.95,0.0,0.4013888888888889,0.45416666666666666,0.6574074074074074,,,,4.0,2.0,3.0,3.0,3.0,3.0,,,,20.0,11.0,0.0,2.0,2.0,2.0,0.0,,,
|
||||||
12736.0,David DeJesus,2005 Live,MVP,L,0.0,0.20513,0.48718,0.30769,3.9,3.0,6.85,0.0,0.0,0.0,6.85,10.25,3.4,5.0,0.0,10.5,12.5,19.0,4.0,0.0,0.6,0.0,2.1,0.0,20.05,0.0,0.3263888888888889,0.4236111111111111,0.6032407407407407,3.0,7.0,False,0.08333333333333333,B,B,13.0,3.0,27.0,0.23729,0.32203,0.44068,1.05,3.0,7.8,0.0,1.95,1.95,6.15,9.2,3.2,5.0,0.0,14.65,13.35,6.0,2.0,0.0,0.8,1.0,0.0,0.0,25.9,5.0,0.32685185185185184,0.4625,0.5782407407407407,,,,,,,,1.0,,,,,,,,,3.0,,0.0,,,
|
12736.0,David DeJesus,2005 Live,MVP,L,0.0,0.20513,0.48718,0.30769,3.9,3.0,6.85,0.0,0.0,0.0,6.85,10.25,3.4,5.0,0.0,10.5,12.5,19.0,4.0,0.0,0.6,0.0,2.1,0.0,20.05,0.0,0.3263888888888889,0.4236111111111111,0.6032407407407407,3.0,7.0,False,0.08333333333333333,B,B,13.0,3.0,27.0,0.23729,0.32203,0.44068,1.05,3.0,7.8,0.0,1.95,1.95,6.15,9.2,3.2,5.0,0.0,14.65,13.35,6.0,2.0,0.0,0.8,1.0,0.0,0.0,25.9,5.0,0.32685185185185184,0.4625,0.5782407407407407,,,,,,,,1.0,,,,,,,,,3.0,,0.0,,,
|
||||||
12737.0,Mike Sweeney,2005 Live,All-Star,R,0.0,0.1875,0.6,0.2125,1.05,4.0,0.0,0.0,7.1,7.05,3.9,3.8,1.25,5.0,0.0,17.05,10.95,13.0,4.0,0.0,3.75,2.95,2.95,0.0,15.2,5.0,0.2652777777777778,0.42314814814814816,0.4810185185185185,3.0,20.0,False,0.027777777777777776,D,B,10.0,1.0,27.0,0.23377,0.25974,0.50649,1.05,2.0,0.0,0.0,7.25,7.45,5.85,8.1,2.8,5.0,2.0,3.75,18.25,6.0,12.0,0.0,1.2,1.5,4.0,0.0,15.8,4.0,0.3333333333333333,0.38657407407407407,0.5263888888888889,,,4.0,,,,,,,,,2.0,,,,,,,,,,
|
12737.0,Mike Sweeney,2005 Live,All-Star,R,0.0,0.1875,0.6,0.2125,1.05,4.0,0.0,0.0,7.1,7.05,3.9,3.8,1.25,5.0,0.0,17.05,10.95,13.0,4.0,0.0,3.75,2.95,2.95,0.0,15.2,5.0,0.2652777777777778,0.42314814814814816,0.4810185185185185,3.0,20.0,False,0.027777777777777776,D,B,10.0,1.0,27.0,0.23377,0.25974,0.50649,1.05,2.0,0.0,0.0,7.25,7.45,5.85,8.1,2.8,5.0,2.0,3.75,18.25,6.0,12.0,0.0,1.2,1.5,4.0,0.0,15.8,4.0,0.3333333333333333,0.38657407407407407,0.5263888888888889,,,4.0,,,,,,,,,2.0,,,,,,,,,,
|
||||||
12738.0,Angel Berroa,2005 Live,Reserve,R,0.0,0.2439,0.5122,0.2439,1.05,6.0,0.0,0.0,3.5,3.6,7.15,10.75,3.75,5.0,0.0,3.5,16.5,11.0,6.0,0.0,1.25,2.4,1.95,0.0,20.6,4.0,0.32685185185185184,0.3592592592592593,0.5050925925925925,3.0,9.0,False,0.08333333333333333,D,C,13.0,1.0,27.0,0.22727,0.31818,0.45455,1.05,2.0,0.0,0.0,4.5,4.75,3.25,5.1,1.4,5.0,6.0,4.5,18.5,15.0,4.0,0.0,2.6,1.25,2.95,5.25,16.9,4.0,0.21805555555555556,0.31527777777777777,0.36064814814814816,,,,,,5.0,,,,,,,,,24.0,,,,,,,
|
12738.0,Angel Berroa,2005 Live,Reserve,R,0.0,0.2439,0.5122,0.2439,1.05,6.0,0.0,0.0,3.5,3.6,7.15,10.75,3.75,5.0,0.0,3.5,16.5,11.0,6.0,0.0,1.25,2.4,1.95,0.0,20.6,4.0,0.32685185185185184,0.3592592592592593,0.5050925925925925,3.0,9.0,False,0.08333333333333333,D,C,13.0,1.0,27.0,0.22727,0.31818,0.45455,1.05,2.0,0.0,0.0,4.5,4.75,3.25,5.1,1.4,5.0,6.0,4.5,18.5,15.0,4.0,0.0,2.6,1.25,2.95,5.25,16.9,4.0,0.21805555555555556,0.31527777777777777,0.36064814814814816,,,,,,5.0,,,,,,,,,24.0,,,,,,,
|
||||||
@ -5905,7 +5905,7 @@ player_id,player_name,cardset_name,rarity,hand,variant,pull_rate_vl,center_rate_
|
|||||||
12745.0,Randy Winn,2005 Live,Replacement,R,0.0,0.29545,0.40909,0.29546,0.0,0.0,0.0,0.0,4.2,3.75,1.8,3.4,1.8,5.0,0.0,4.5,16.5,5.0,5.0,0.0,2.2,2.25,2.0,0.0,47.6,3.0,0.16157407407407406,0.20324074074074075,0.2351851851851852,5.0,8.0,False,0.19444444444444445,B,B,13.0,1.0,27.0,0.23438,0.28125,0.48437,0.0,0.0,0.0,0.0,8.0,8.05,6.35,9.55,3.25,5.0,2.0,21.4,15.6,1.0,8.0,0.0,1.75,0.0,1.95,1.65,14.45,0.0,0.3490740740740741,0.5657407407407408,0.4976851851851852,,,,,,,2.0,1.0,,,,,,,,0.0,0.0,,0.0,,,
|
12745.0,Randy Winn,2005 Live,Replacement,R,0.0,0.29545,0.40909,0.29546,0.0,0.0,0.0,0.0,4.2,3.75,1.8,3.4,1.8,5.0,0.0,4.5,16.5,5.0,5.0,0.0,2.2,2.25,2.0,0.0,47.6,3.0,0.16157407407407406,0.20324074074074075,0.2351851851851852,5.0,8.0,False,0.19444444444444445,B,B,13.0,1.0,27.0,0.23438,0.28125,0.48437,0.0,0.0,0.0,0.0,8.0,8.05,6.35,9.55,3.25,5.0,2.0,21.4,15.6,1.0,8.0,0.0,1.75,0.0,1.95,1.65,14.45,0.0,0.3490740740740741,0.5657407407407408,0.4976851851851852,,,,,,,2.0,1.0,,,,,,,,0.0,0.0,,0.0,,,
|
||||||
12746.0,Wilson Valdez,2005 Live,Replacement,R,0.0,0.16667,0.6,0.23333,0.0,0.0,0.0,0.0,4.75,4.75,3.2,4.5,1.5,5.0,0.0,0.0,34.0,3.0,2.0,0.0,1.5,2.25,3.0,0.0,32.55,6.0,0.1962962962962963,0.1962962962962963,0.28425925925925927,3.0,7.0,False,0.16666666666666666,A,D,12.0,1.0,27.0,0.22034,0.20339,0.57627,0.0,0.0,0.0,0.0,3.4,3.4,5.1,7.55,2.5,5.0,0.0,4.75,18.25,4.0,14.0,0.0,2.5,0.6,2.0,0.0,34.95,0.0,0.2263888888888889,0.27037037037037037,0.28935185185185186,,,,,,5.0,,,,,,,,,21.0,,,,,,,
|
12746.0,Wilson Valdez,2005 Live,Replacement,R,0.0,0.16667,0.6,0.23333,0.0,0.0,0.0,0.0,4.75,4.75,3.2,4.5,1.5,5.0,0.0,0.0,34.0,3.0,2.0,0.0,1.5,2.25,3.0,0.0,32.55,6.0,0.1962962962962963,0.1962962962962963,0.28425925925925927,3.0,7.0,False,0.16666666666666666,A,D,12.0,1.0,27.0,0.22034,0.20339,0.57627,0.0,0.0,0.0,0.0,3.4,3.4,5.1,7.55,2.5,5.0,0.0,4.75,18.25,4.0,14.0,0.0,2.5,0.6,2.0,0.0,34.95,0.0,0.2263888888888889,0.27037037037037037,0.28935185185185186,,,,,,5.0,,,,,,,,,21.0,,,,,,,
|
||||||
12747.0,Coco Crisp,2005 Live,Reserve,R,0.0,0.30556,0.38889,0.30555,0.0,0.0,0.0,0.0,6.65,6.65,5.1,7.25,2.5,5.0,0.0,3.95,27.05,5.0,10.0,0.0,2.5,1.35,2.0,0.0,19.0,4.0,0.28379629629629627,0.32037037037037036,0.40694444444444444,8.0,11.0,False,0.1111111111111111,C,C,13.0,3.0,27.0,0.22059,0.20588,0.57353,1.05,2.0,3.2,0.0,4.25,4.25,4.25,6.4,2.2,5.0,0.0,11.1,6.9,17.0,2.0,0.0,1.8,0.75,2.95,0.0,27.9,5.0,0.26944444444444443,0.37222222222222223,0.46435185185185185,,,,,,,1.0,3.0,,,,,,,,3.0,3.0,,0.0,,,
|
12747.0,Coco Crisp,2005 Live,Reserve,R,0.0,0.30556,0.38889,0.30555,0.0,0.0,0.0,0.0,6.65,6.65,5.1,7.25,2.5,5.0,0.0,3.95,27.05,5.0,10.0,0.0,2.5,1.35,2.0,0.0,19.0,4.0,0.28379629629629627,0.32037037037037036,0.40694444444444444,8.0,11.0,False,0.1111111111111111,C,C,13.0,3.0,27.0,0.22059,0.20588,0.57353,1.05,2.0,3.2,0.0,4.25,4.25,4.25,6.4,2.2,5.0,0.0,11.1,6.9,17.0,2.0,0.0,1.8,0.75,2.95,0.0,27.9,5.0,0.26944444444444443,0.37222222222222223,0.46435185185185185,,,,,,,1.0,3.0,,,,,,,,3.0,3.0,,0.0,,,
|
||||||
12748.0,Victor Martinez,2005 Live,Reserve,R,0.0,0.3125,0.375,0.3125,1.25,6.0,0.0,0.0,6.7,6.7,5.4,7.7,2.7,5.0,4.0,13.3,12.7,5.0,5.0,0.0,3.3,1.05,0.0,0.9,21.3,0.0,0.33287037037037037,0.4930555555555556,0.575,0.0,0.0,False,0.0,D,D,8.0,2.0,27.0,0.22807,0.21053,0.5614,1.2,2.0,0.0,0.0,3.2,2.75,2.2,0.0,4.2,5.0,0.0,12.35,11.65,8.0,14.0,0.0,1.8,2.25,3.8,6.6,22.0,5.0,0.15787037037037038,0.2722222222222222,0.2740740740740741,,3.0,,,,,,,,,2.0,,,,,,,,,0.0,2.0,5.0
|
12748.0,Victor Martinez,2005 Live,Reserve,S,0.0,0.3125,0.375,0.3125,1.25,6.0,0.0,0.0,6.7,6.7,5.4,7.7,2.7,5.0,4.0,13.3,7.7,6.0,9.0,0.0,3.3,1.05,0.0,0.9,21.3,0.0,0.33287037037037037,0.4930555555555556,0.575,0.0,0.0,False,0.0,D,D,8.0,2.0,27.0,0.22807,0.21053,0.5614,1.2,2.0,0.0,0.0,3.2,2.75,2.2,0.0,4.2,5.0,0.0,12.35,14.65,1.0,24.0,0.0,1.8,2.25,3.8,6.6,19.0,2.0,0.15787037037037038,0.2722222222222222,0.2740740740740741,,3.0,,,,,,,,,2.0,,,,,,,,,0.0,2.0,5.0
|
||||||
12749.0,Travis Hafner,2005 Live,All-Star,L,0.0,0.10526,0.6,0.29474,0.0,0.0,0.0,0.0,7.0,7.05,3.2,4.5,1.4,5.0,5.0,18.0,25.0,3.0,6.0,0.0,2.6,1.95,1.0,0.0,17.3,0.0,0.2375,0.45046296296296295,0.3675925925925926,0.0,0.0,False,0.0,D,A,11.0,3.0,27.0,0.19643,0.21429,0.58928,0.0,3.0,0.0,0.0,8.95,8.95,5.7,7.9,2.7,5.0,0.0,19.25,11.75,5.0,4.0,0.0,3.3,1.05,0.0,0.0,16.45,5.0,0.3537037037037037,0.5319444444444444,0.5611111111111111,,,,,,,,,,,,,,,,,,,,,,
|
12749.0,Travis Hafner,2005 Live,All-Star,L,0.0,0.10526,0.6,0.29474,0.0,0.0,0.0,0.0,7.0,7.05,3.2,4.5,1.4,5.0,5.0,18.0,25.0,3.0,6.0,0.0,2.6,1.95,1.0,0.0,17.3,0.0,0.2375,0.45046296296296295,0.3675925925925926,0.0,0.0,False,0.0,D,A,11.0,3.0,27.0,0.19643,0.21429,0.58928,0.0,3.0,0.0,0.0,8.95,8.95,5.7,7.9,2.7,5.0,0.0,19.25,11.75,5.0,4.0,0.0,3.3,1.05,0.0,0.0,16.45,5.0,0.3537037037037037,0.5319444444444444,0.5611111111111111,,,,,,,,,,,,,,,,,,,,,,
|
||||||
12750.0,Casey Blake,2005 Live,Replacement,R,0.0,0.16667,0.6,0.23333,2.4,7.0,0.0,0.0,0.0,0.0,3.2,4.5,1.5,5.0,0.0,5.7,35.3,10.0,11.0,0.0,3.5,4.0,4.6,0.0,6.3,4.0,0.16296296296296298,0.21574074074074073,0.32685185185185184,3.0,7.0,False,0.08333333333333333,D,D,13.0,2.0,27.0,0.30189,0.22642,0.47169,4.25,3.0,0.0,0.0,1.95,1.95,3.15,4.2,1.3,5.0,5.0,11.8,18.2,7.0,0.0,0.0,0.7,0.0,1.8,3.9,30.8,4.0,0.1925925925925926,0.34814814814814815,0.38842592592592595,,,3.0,,3.0,,,,2.0,,,30.0,,35.0,,,,6.0,0.0,,,
|
12750.0,Casey Blake,2005 Live,Replacement,R,0.0,0.16667,0.6,0.23333,2.4,7.0,0.0,0.0,0.0,0.0,3.2,4.5,1.5,5.0,0.0,5.7,35.3,10.0,11.0,0.0,3.5,4.0,4.6,0.0,6.3,4.0,0.16296296296296298,0.21574074074074073,0.32685185185185184,3.0,7.0,False,0.08333333333333333,D,D,13.0,2.0,27.0,0.30189,0.22642,0.47169,4.25,3.0,0.0,0.0,1.95,1.95,3.15,4.2,1.3,5.0,5.0,11.8,18.2,7.0,0.0,0.0,0.7,0.0,1.8,3.9,30.8,4.0,0.1925925925925926,0.34814814814814815,0.38842592592592595,,,3.0,,3.0,,,,2.0,,,30.0,,35.0,,,,6.0,0.0,,,
|
||||||
12751.0,Aaron Boone,2005 Live,Replacement,R,0.0,0.22222,0.55556,0.22222,1.9,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,28.0,4.0,5.0,1.0,0.0,9.0,9.1,1.0,27.0,8.0,0.05925925925925926,0.10555555555555556,0.23703703703703705,3.0,13.0,False,0.1111111111111111,D,D,14.0,2.0,27.0,0.2381,0.2381,0.5238,1.2,6.0,0.0,0.0,1.95,1.95,0.0,2.5,0.0,5.0,2.0,11.9,34.1,4.0,10.0,0.0,0.0,2.1,2.8,2.0,17.5,3.0,0.12129629629629629,0.25,0.2740740740740741,,,,,4.0,,,,,,,,,22.0,,,,,,,,
|
12751.0,Aaron Boone,2005 Live,Replacement,R,0.0,0.22222,0.55556,0.22222,1.9,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,28.0,4.0,5.0,1.0,0.0,9.0,9.1,1.0,27.0,8.0,0.05925925925925926,0.10555555555555556,0.23703703703703705,3.0,13.0,False,0.1111111111111111,D,D,14.0,2.0,27.0,0.2381,0.2381,0.5238,1.2,6.0,0.0,0.0,1.95,1.95,0.0,2.5,0.0,5.0,2.0,11.9,34.1,4.0,10.0,0.0,0.0,2.1,2.8,2.0,17.5,3.0,0.12129629629629629,0.25,0.2740740740740741,,,,,4.0,,,,,,,,,22.0,,,,,,,,
|
||||||
@ -5914,7 +5914,7 @@ player_id,player_name,cardset_name,rarity,hand,variant,pull_rate_vl,center_rate_
|
|||||||
12754.0,Eric Chavez,2005 Live,Replacement,L,0.0,0.28571,0.42857,0.28572,0.0,0.0,0.0,0.0,8.0,8.05,0.0,4.25,1.5,5.0,4.0,7.8,29.2,2.0,13.0,0.0,3.5,1.95,1.0,0.0,18.75,0.0,0.225,0.33425925925925926,0.3736111111111111,3.0,20.0,False,0.05555555555555555,D,D,12.0,1.0,27.0,0.25,0.2,0.55,1.2,4.0,0.0,0.0,3.2,2.5,2.8,4.2,1.4,5.0,0.0,14.4,16.6,9.0,7.0,0.0,0.6,5.3,1.0,3.0,24.8,2.0,0.18333333333333332,0.31666666666666665,0.325,,,,,1.0,,,,,,,,,17.0,,,,,,,,
|
12754.0,Eric Chavez,2005 Live,Replacement,L,0.0,0.28571,0.42857,0.28572,0.0,0.0,0.0,0.0,8.0,8.05,0.0,4.25,1.5,5.0,4.0,7.8,29.2,2.0,13.0,0.0,3.5,1.95,1.0,0.0,18.75,0.0,0.225,0.33425925925925926,0.3736111111111111,3.0,20.0,False,0.05555555555555555,D,D,12.0,1.0,27.0,0.25,0.2,0.55,1.2,4.0,0.0,0.0,3.2,2.5,2.8,4.2,1.4,5.0,0.0,14.4,16.6,9.0,7.0,0.0,0.6,5.3,1.0,3.0,24.8,2.0,0.18333333333333332,0.31666666666666665,0.325,,,,,1.0,,,,,,,,,17.0,,,,,,,,
|
||||||
12755.0,Erubiel Durazo,2005 Live,Starter,L,0.0,0.1,0.6,0.3,1.65,8.0,0.0,0.0,5.1,4.75,6.25,5.7,6.8,5.0,0.0,5.9,16.1,7.0,10.0,0.0,0.2,1.6,0.0,0.0,18.95,5.0,0.3402777777777778,0.39490740740740743,0.5884259259259259,3.0,20.0,False,0.05555555555555555,D,C,10.0,3.0,27.0,0.18333,0.23333,0.58334,1.2,3.0,0.0,0.0,2.25,2.25,5.1,7.55,2.5,5.0,0.0,12.95,22.05,7.0,5.0,0.0,2.5,5.55,1.0,4.65,14.45,4.0,0.2300925925925926,0.35,0.34675925925925927,,,,,,,,,,,,,,,,,,,,,,
|
12755.0,Erubiel Durazo,2005 Live,Starter,L,0.0,0.1,0.6,0.3,1.65,8.0,0.0,0.0,5.1,4.75,6.25,5.7,6.8,5.0,0.0,5.9,16.1,7.0,10.0,0.0,0.2,1.6,0.0,0.0,18.95,5.0,0.3402777777777778,0.39490740740740743,0.5884259259259259,3.0,20.0,False,0.05555555555555555,D,C,10.0,3.0,27.0,0.18333,0.23333,0.58334,1.2,3.0,0.0,0.0,2.25,2.25,5.1,7.55,2.5,5.0,0.0,12.95,22.05,7.0,5.0,0.0,2.5,5.55,1.0,4.65,14.45,4.0,0.2300925925925926,0.35,0.34675925925925927,,,,,,,,,,,,,,,,,,,,,,
|
||||||
12756.0,Scott Hatteberg,2005 Live,Reserve,L,0.0,0.27778,0.6,0.12222,0.0,0.0,0.0,0.0,4.5,4.25,0.5,0.0,5.7,5.0,0.0,21.6,23.4,13.0,5.0,0.0,0.3,0.0,0.75,1.0,22.0,1.0,0.16157407407407406,0.36157407407407405,0.24259259259259258,0.0,0.0,False,0.0,D,C,11.0,2.0,27.0,0.34667,0.14667,0.50666,0.0,3.0,0.0,0.0,5.4,5.1,6.85,10.25,3.4,5.0,2.0,4.2,13.8,4.0,15.0,0.0,0.6,1.9,2.0,0.0,24.5,1.0,0.32407407407407407,0.3814814814814815,0.46296296296296297,,,3.0,,,,,,,,,19.0,,,,,,,,,,
|
12756.0,Scott Hatteberg,2005 Live,Reserve,L,0.0,0.27778,0.6,0.12222,0.0,0.0,0.0,0.0,4.5,4.25,0.5,0.0,5.7,5.0,0.0,21.6,23.4,13.0,5.0,0.0,0.3,0.0,0.75,1.0,22.0,1.0,0.16157407407407406,0.36157407407407405,0.24259259259259258,0.0,0.0,False,0.0,D,C,11.0,2.0,27.0,0.34667,0.14667,0.50666,0.0,3.0,0.0,0.0,5.4,5.1,6.85,10.25,3.4,5.0,2.0,4.2,13.8,4.0,15.0,0.0,0.6,1.9,2.0,0.0,24.5,1.0,0.32407407407407407,0.3814814814814815,0.46296296296296297,,,3.0,,,,,,,,,19.0,,,,,,,,,,
|
||||||
12757.0,Nick Swisher,2005 Live,Replacement,R,0.0,0.18182,0.6,0.21818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.5,1.4,5.0,0.0,9.25,22.75,10.0,22.0,0.0,2.6,1.0,1.0,1.0,19.5,8.0,0.07777777777777778,0.16342592592592592,0.07777777777777778,0.0,0.0,False,0.0,D,C,11.0,3.0,27.0,0.28302,0.13208,0.5849,1.4,7.0,0.0,0.0,4.5,4.2,7.5,3.35,0.0,5.0,0.0,10.1,26.9,11.0,5.0,1.0,0.0,1.8,3.6,0.0,10.65,5.0,0.24953703703703703,0.34305555555555556,0.46620370370370373,,,4.0,,,,,,2.0,,,0.0,,,,,,2.0,0.0,,,
|
12757.0,Nick Swisher,2005 Live,Replacement,S,0.0,0.18182,0.6,0.21818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.5,1.4,5.0,0.0,9.25,5.75,20.0,34.0,0.0,2.6,1.0,1.0,1.0,19.0,3.5,0.07777777777777778,0.16342592592592592,0.07777777777777778,0.0,0.0,False,0.0,D,C,11.0,3.0,27.0,0.28302,0.13208,0.5849,1.4,7.0,0.0,0.0,4.5,4.2,7.5,3.35,0.0,5.0,0.0,10.1,20.9,15.0,12.0,1.0,0.0,1.8,3.6,0.0,7.0,3.65,0.24953703703703703,0.34305555555555556,0.46620370370370373,,,4.0,,,,,,2.0,,,0.0,,,,,,2.0,0.0,,,
|
||||||
12758.0,Jason Kendall,2005 Live,Reserve,R,0.0,0.21429,0.57143,0.21428,0.0,0.0,0.0,0.0,0.0,0.0,6.55,7.9,5.4,5.0,0.0,30.9,11.1,12.0,10.0,0.0,0.6,1.0,0.0,0.45,8.1,9.0,0.20694444444444443,0.4930555555555556,0.20694444444444443,3.0,11.0,False,0.08333333333333333,D,C,12.0,2.0,27.0,0.22059,0.23529,0.54412,0.0,0.0,0.0,0.0,5.85,5.85,5.75,8.65,3.2,5.0,2.0,6.9,11.1,6.0,15.0,0.0,0.8,0.15,2.0,1.4,19.35,9.0,0.29444444444444445,0.3768518518518518,0.4027777777777778,,4.0,,,,,,,,,3.0,,,,,,,,,1.0,3.0,6.0
|
12758.0,Jason Kendall,2005 Live,Reserve,R,0.0,0.21429,0.57143,0.21428,0.0,0.0,0.0,0.0,0.0,0.0,6.55,7.9,5.4,5.0,0.0,30.9,11.1,12.0,10.0,0.0,0.6,1.0,0.0,0.45,8.1,9.0,0.20694444444444443,0.4930555555555556,0.20694444444444443,3.0,11.0,False,0.08333333333333333,D,C,12.0,2.0,27.0,0.22059,0.23529,0.54412,0.0,0.0,0.0,0.0,5.85,5.85,5.75,8.65,3.2,5.0,2.0,6.9,11.1,6.0,15.0,0.0,0.8,0.15,2.0,1.4,19.35,9.0,0.29444444444444445,0.3768518518518518,0.4027777777777778,,4.0,,,,,,,,,3.0,,,,,,,,,1.0,3.0,6.0
|
||||||
12759.0,Dmitri Young,2005 Live,MVP,R,0.0,0.25,0.5,0.25,0.0,0.0,8.95,0.0,4.5,4.5,4.5,6.4,2.2,5.0,6.0,12.5,16.5,4.0,8.0,0.0,1.8,0.0,0.5,1.05,21.6,0.0,0.3106481481481482,0.48194444444444445,0.5597222222222222,3.0,20.0,False,0.027777777777777776,D,B,10.0,2.0,27.0,0.16,0.2,0.64,7.3,5.0,2.1,0.0,1.4,4.5,10.2,3.9,1.2,5.0,2.0,8.65,22.35,8.0,0.0,1.0,2.8,0.5,2.7,0.3,12.0,7.1,0.3296296296296296,0.42824074074074076,0.6953703703703704,,,3.0,,,,4.0,,,,,13.0,,,,0.0,,,1.0,,,
|
12759.0,Dmitri Young,2005 Live,MVP,R,0.0,0.25,0.5,0.25,0.0,0.0,8.95,0.0,4.5,4.5,4.5,6.4,2.2,5.0,6.0,12.5,16.5,4.0,8.0,0.0,1.8,0.0,0.5,1.05,21.6,0.0,0.3106481481481482,0.48194444444444445,0.5597222222222222,3.0,20.0,False,0.027777777777777776,D,B,10.0,2.0,27.0,0.16,0.2,0.64,7.3,5.0,2.1,0.0,1.4,4.5,10.2,3.9,1.2,5.0,2.0,8.65,22.35,8.0,0.0,1.0,2.8,0.5,2.7,0.3,12.0,7.1,0.3296296296296296,0.42824074074074076,0.6953703703703704,,,3.0,,,,4.0,,,,,13.0,,,,0.0,,,1.0,,,
|
||||||
12760.0,Tadahito Iguchi,2005 Live,Starter,R,0.0,0.24138,0.51724,0.24138,0.0,0.0,0.0,0.0,5.9,5.95,7.35,11.3,3.95,5.0,0.0,5.1,9.9,9.0,12.0,0.0,1.05,2.05,2.0,0.0,18.45,9.0,0.3421296296296296,0.38935185185185184,0.45185185185185184,3.0,12.0,True,0.1388888888888889,D,A,12.0,1.0,27.0,0.27778,0.20833,0.51389,0.0,0.0,0.0,0.0,6.7,6.65,8.7,13.0,4.55,5.0,0.0,6.65,13.35,14.0,10.0,0.0,0.45,0.0,1.35,2.6,6.0,9.0,0.38981481481481484,0.4513888888888889,0.513425925925926,,,,4.0,,,,,,,,,15.0,,,,,,,,,
|
12760.0,Tadahito Iguchi,2005 Live,Starter,R,0.0,0.24138,0.51724,0.24138,0.0,0.0,0.0,0.0,5.9,5.95,7.35,11.3,3.95,5.0,0.0,5.1,9.9,9.0,12.0,0.0,1.05,2.05,2.0,0.0,18.45,9.0,0.3421296296296296,0.38935185185185184,0.45185185185185184,3.0,12.0,True,0.1388888888888889,D,A,12.0,1.0,27.0,0.27778,0.20833,0.51389,0.0,0.0,0.0,0.0,6.7,6.65,8.7,13.0,4.55,5.0,0.0,6.65,13.35,14.0,10.0,0.0,0.45,0.0,1.35,2.6,6.0,9.0,0.38981481481481484,0.4513888888888889,0.513425925925926,,,,4.0,,,,,,,,,15.0,,,,,,,,,
|
||||||
@ -5942,10 +5942,10 @@ player_id,player_name,cardset_name,rarity,hand,variant,pull_rate_vl,center_rate_
|
|||||||
12782.0,Alex Rodriguez,2005 Live,MVP,R,0.0,0.23529,0.52941,0.2353,1.65,7.0,0.0,0.0,4.5,4.2,6.9,4.25,9.75,5.0,0.0,5.7,9.3,3.0,16.0,0.0,2.25,1.15,1.0,0.6,20.75,5.0,0.3449074074074074,0.3976851851851852,0.5685185185185185,10.0,13.0,True,0.1388888888888889,D,C,11.0,1.0,27.0,0.1875,0.28125,0.53125,9.35,6.0,0.0,0.0,2.2,6.1,6.85,2.7,0.0,5.0,0.0,9.25,13.75,6.0,11.0,1.0,0.0,3.9,5.65,0.0,14.25,5.0,0.30277777777777776,0.38842592592592595,0.7226851851851852,,,,,5.0,,,,,,,,,14.0,,,,,,,,
|
12782.0,Alex Rodriguez,2005 Live,MVP,R,0.0,0.23529,0.52941,0.2353,1.65,7.0,0.0,0.0,4.5,4.2,6.9,4.25,9.75,5.0,0.0,5.7,9.3,3.0,16.0,0.0,2.25,1.15,1.0,0.6,20.75,5.0,0.3449074074074074,0.3976851851851852,0.5685185185185185,10.0,13.0,True,0.1388888888888889,D,C,11.0,1.0,27.0,0.1875,0.28125,0.53125,9.35,6.0,0.0,0.0,2.2,6.1,6.85,2.7,0.0,5.0,0.0,9.25,13.75,6.0,11.0,1.0,0.0,3.9,5.65,0.0,14.25,5.0,0.30277777777777776,0.38842592592592595,0.7226851851851852,,,,,5.0,,,,,,,,,14.0,,,,,,,,
|
||||||
12783.0,Hideki Matsui,2005 Live,Starter,L,0.0,0.20833,0.58333,0.20834,1.05,5.0,0.0,0.0,5.7,5.7,3.3,2.7,3.25,5.0,0.0,4.25,21.75,16.0,4.0,0.0,1.75,2.25,2.0,0.0,17.3,7.0,0.24722222222222223,0.2865740740740741,0.4513888888888889,3.0,10.0,False,0.027777777777777776,D,C,12.0,3.0,27.0,0.28947,0.18421,0.52632,1.05,5.0,0.0,0.0,5.4,5.35,3.85,5.75,1.9,5.0,0.0,19.0,15.0,2.0,7.0,0.0,1.1,2.6,1.0,1.75,22.25,3.0,0.262037037037037,0.43796296296296294,0.4601851851851852,,,,,,,4.0,5.0,4.0,,,,,,,2.0,2.0,2.0,1.0,,,
|
12783.0,Hideki Matsui,2005 Live,Starter,L,0.0,0.20833,0.58333,0.20834,1.05,5.0,0.0,0.0,5.7,5.7,3.3,2.7,3.25,5.0,0.0,4.25,21.75,16.0,4.0,0.0,1.75,2.25,2.0,0.0,17.3,7.0,0.24722222222222223,0.2865740740740741,0.4513888888888889,3.0,10.0,False,0.027777777777777776,D,C,12.0,3.0,27.0,0.28947,0.18421,0.52632,1.05,5.0,0.0,0.0,5.4,5.35,3.85,5.75,1.9,5.0,0.0,19.0,15.0,2.0,7.0,0.0,1.1,2.6,1.0,1.75,22.25,3.0,0.262037037037037,0.43796296296296294,0.4601851851851852,,,,,,,4.0,5.0,4.0,,,,,,,2.0,2.0,2.0,1.0,,,
|
||||||
12784.0,Jason Giambi,2005 Live,Starter,L,0.0,0.31579,0.52632,0.15789,1.9,8.0,0.0,0.0,0.0,0.0,3.25,5.1,1.5,5.0,19.0,9.8,20.2,6.0,8.0,0.0,0.5,1.0,1.1,0.0,16.65,1.0,0.16898148148148148,0.4356481481481482,0.33287037037037037,0.0,0.0,False,0.0,D,C,11.0,1.0,27.0,0.25714,0.28571,0.45715,5.1,3.0,0.0,0.0,2.25,2.25,4.75,6.65,2.25,5.0,3.0,25.55,21.45,6.0,4.0,0.0,2.75,1.65,0.0,0.0,8.35,4.0,0.2523148148148148,0.5166666666666667,0.4773148148148148,,,5.0,,,,,,,,,14.0,,,,,,,,,,
|
12784.0,Jason Giambi,2005 Live,Starter,L,0.0,0.31579,0.52632,0.15789,1.9,8.0,0.0,0.0,0.0,0.0,3.25,5.1,1.5,5.0,19.0,9.8,20.2,6.0,8.0,0.0,0.5,1.0,1.1,0.0,16.65,1.0,0.16898148148148148,0.4356481481481482,0.33287037037037037,0.0,0.0,False,0.0,D,C,11.0,1.0,27.0,0.25714,0.28571,0.45715,5.1,3.0,0.0,0.0,2.25,2.25,4.75,6.65,2.25,5.0,3.0,25.55,21.45,6.0,4.0,0.0,2.75,1.65,0.0,0.0,8.35,4.0,0.2523148148148148,0.5166666666666667,0.4773148148148148,,,5.0,,,,,,,,,14.0,,,,,,,,,,
|
||||||
12785.0,Bernie Williams,2005 Live,Starter,R,0.0,0.21429,0.57143,0.21428,0.0,0.0,0.0,0.0,6.7,6.75,8.85,13.3,4.5,5.0,0.0,22.35,5.65,11.0,9.0,0.0,0.5,1.25,1.0,0.0,12.15,0.0,0.39444444444444443,0.6013888888888889,0.5189814814814815,1.0,4.0,False,0.027777777777777776,D,C,12.0,1.0,27.0,0.22951,0.2623,0.50819,1.05,3.0,0.0,0.0,3.3,3.25,2.7,3.2,4.55,5.0,0.0,11.4,16.6,6.0,12.0,0.0,0.45,1.75,2.95,0.0,25.8,5.0,0.20416666666666666,0.30972222222222223,0.33564814814814814,,,,,,,,5.0,,,,,,,,,2.0,,2.0,,,
|
12785.0,Bernie Williams,2005 Live,Starter,S,0.0,0.21429,0.57143,0.21428,0.0,0.0,0.0,0.0,6.7,6.75,8.85,13.3,4.5,5.0,0.0,22.35,5.65,11.0,9.0,0.0,0.5,1.25,1.0,0.0,12.15,0.0,0.39444444444444443,0.6013888888888889,0.5189814814814815,1.0,4.0,False,0.027777777777777776,D,C,12.0,1.0,27.0,0.22951,0.2623,0.50819,1.05,3.0,0.0,0.0,3.3,3.25,2.7,3.2,4.55,5.0,0.0,11.4,17.6,6.0,12.0,0.0,0.45,1.75,2.95,0.0,25.0,4.8,0.20416666666666666,0.30972222222222223,0.33564814814814814,,,,,,,,5.0,,,,,,,,,2.0,,2.0,,,
|
||||||
12786.0,Jorge Posada,2005 Live,Starter,R,0.0,0.12,0.6,0.28,0.0,0.0,0.0,0.0,7.6,7.55,6.0,9.05,3.2,5.0,0.0,12.95,14.05,10.0,9.0,0.0,0.8,1.45,2.0,0.0,14.35,5.0,0.33240740740740743,0.45231481481481484,0.4726851851851852,3.0,20.0,False,0.027777777777777776,D,C,10.0,2.0,27.0,0.19048,0.45238,0.35714,1.05,3.0,0.0,0.0,3.6,3.5,3.9,2.4,5.7,5.0,0.0,15.65,17.35,1.0,18.0,0.0,0.3,1.5,1.95,0.0,19.1,5.0,0.22361111111111112,0.3685185185185185,0.36018518518518516,,3.0,,,,,,,,,1.0,,,,,,,,,-1.0,7.0,3.0
|
12786.0,Jorge Posada,2005 Live,Starter,S,0.0,0.12,0.6,0.28,0.0,0.0,0.0,0.0,7.6,7.55,6.0,9.05,3.2,5.0,0.0,12.95,6.05,6.0,18.0,0.0,0.8,0.45,2.0,0.0,1.4,21.95,0.33240740740740743,0.45231481481481484,0.4726851851851852,3.0,20.0,False,0.027777777777777776,D,C,10.0,2.0,27.0,0.19048,0.45238,0.35714,1.05,3.0,0.0,0.0,3.7,3.4,3.3,2.4,6.3,5.0,0.0,15.65,14.35,1.0,28.0,0.0,2.7,2.55,1.0,0.0,5.0,9.6,0.22361111111111112,0.3685185185185185,0.36018518518518516,,3.0,,,,,,,,,1.0,,,,,,,,,-1.0,7.0,3.0
|
||||||
12787.0,Tino Martinez,2005 Live,Reserve,L,0.0,0.46667,0.53333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4,9.7,3.3,5.0,7.0,28.55,9.45,7.0,5.0,0.0,2.7,0.0,2.0,0.0,17.9,4.0,0.20277777777777778,0.5319444444444444,0.20277777777777778,3.0,20.0,False,0.027777777777777776,D,C,8.0,2.0,27.0,0.34884,0.18605,0.46511,1.65,6.0,0.0,0.0,3.9,3.9,3.5,5.4,1.65,5.0,3.0,9.7,17.3,10.0,8.0,0.0,1.35,1.45,1.0,0.0,20.2,5.0,0.2361111111111111,0.3537037037037037,0.4375,,,3.0,,,,,,,,,12.0,,,,,,,,,,
|
12787.0,Tino Martinez,2005 Live,Reserve,L,0.0,0.46667,0.53333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4,9.7,3.3,5.0,7.0,28.55,9.45,7.0,5.0,0.0,2.7,0.0,2.0,0.0,17.9,4.0,0.20277777777777778,0.5319444444444444,0.20277777777777778,3.0,20.0,False,0.027777777777777776,D,C,8.0,2.0,27.0,0.34884,0.18605,0.46511,1.65,6.0,0.0,0.0,3.9,3.9,3.5,5.4,1.65,5.0,3.0,9.7,17.3,10.0,8.0,0.0,1.35,1.45,1.0,0.0,20.2,5.0,0.2361111111111111,0.3537037037037037,0.4375,,,3.0,,,,,,,,,12.0,,,,,,,,,,
|
||||||
12788.0,Brian Roberts,2005 Live,Hall of Fame,R,0.0,0.17391,0.6,0.22609,7.05,5.0,6.5,0.0,0.0,0.0,9.0,0.0,4.5,5.0,0.0,22.2,12.8,1.0,12.0,1.0,0.5,5.0,4.95,0.0,1.5,10.0,0.2967592592592593,0.5023148148148148,0.6824074074074075,7.0,10.0,False,0.2222222222222222,A,A,10.0,1.0,27.0,0.21818,0.27273,0.50909,7.75,6.0,5.7,0.0,1.95,5.65,14.75,5.7,1.65,5.0,0.0,13.8,23.2,10.0,0.0,0.0,1.35,0.6,0.0,0.0,0.9,4.0,0.45046296296296295,0.5782407407407407,0.925,,,,5.0,,,,,,,,,8.0,,,,,,,,,
|
12788.0,Brian Roberts,2005 Live,Hall of Fame,S,0.0,0.17391,0.6,0.22609,7.05,5.0,6.5,0.0,0.0,0.0,9.0,0.0,4.5,5.0,0.0,22.2,15.8,1.0,16.0,1.0,0.5,4.95,4.0,0.0,1.5,4.0,0.2967592592592593,0.5023148148148148,0.6824074074074075,7.0,10.0,False,0.2222222222222222,A,A,10.0,1.0,27.0,0.21818,0.27273,0.50909,7.75,6.0,5.7,0.0,1.95,5.65,14.75,5.7,1.65,5.0,0.0,13.8,17.2,12.0,0.0,0.0,1.35,0.6,0.0,0.0,0.6,8.3,0.45046296296296295,0.5782407407407407,0.925,,,,5.0,,,,,,,,,8.0,,,,,,,,,
|
||||||
12789.0,Melvin Mora,2005 Live,All-Star,R,0.0,0.32,0.36,0.32,0.0,0.0,0.0,0.0,10.1,10.1,3.9,4.2,1.2,5.0,0.0,5.1,14.9,13.0,5.0,0.0,0.8,1.9,2.0,0.0,22.8,8.0,0.2962962962962963,0.3435185185185185,0.48333333333333334,3.0,8.0,False,0.08333333333333333,A,B,11.0,1.0,27.0,0.28947,0.11842,0.59211,1.65,8.0,0.0,0.0,5.1,4.75,12.5,4.75,1.5,5.0,5.0,7.65,12.35,11.0,7.0,1.0,0.5,0.6,2.0,0.0,13.65,4.0,0.3402777777777778,0.45740740740740743,0.5884259259259259,,,,,1.0,,,,,,,,,21.0,,,,,,,,
|
12789.0,Melvin Mora,2005 Live,All-Star,R,0.0,0.32,0.36,0.32,0.0,0.0,0.0,0.0,10.1,10.1,3.9,4.2,1.2,5.0,0.0,5.1,14.9,13.0,5.0,0.0,0.8,1.9,2.0,0.0,22.8,8.0,0.2962962962962963,0.3435185185185185,0.48333333333333334,3.0,8.0,False,0.08333333333333333,A,B,11.0,1.0,27.0,0.28947,0.11842,0.59211,1.65,8.0,0.0,0.0,5.1,4.75,12.5,4.75,1.5,5.0,5.0,7.65,12.35,11.0,7.0,1.0,0.5,0.6,2.0,0.0,13.65,4.0,0.3402777777777778,0.45740740740740743,0.5884259259259259,,,,,1.0,,,,,,,,,21.0,,,,,,,,
|
||||||
12790.0,Miguel Tejada,2005 Live,All-Star,R,0.0,0.11765,0.6,0.28235,1.9,9.0,0.0,0.0,0.0,0.0,3.8,5.7,1.9,5.0,0.0,21.6,21.4,11.0,2.0,0.0,1.1,2.0,2.1,0.0,17.5,2.0,0.18796296296296297,0.38796296296296295,0.36574074074074076,3.0,12.0,False,0.05555555555555555,D,B,12.0,1.0,27.0,0.22785,0.16456,0.60759,9.5,6.0,1.5,0.0,3.25,9.4,9.85,3.75,1.2,5.0,3.0,3.5,7.5,7.0,7.0,1.0,0.8,2.6,6.5,7.4,6.25,6.0,0.40694444444444444,0.4671296296296296,0.899074074074074,,,,,,5.0,,,,,,,,,20.0,,,,,,,
|
12790.0,Miguel Tejada,2005 Live,All-Star,R,0.0,0.11765,0.6,0.28235,1.9,9.0,0.0,0.0,0.0,0.0,3.8,5.7,1.9,5.0,0.0,21.6,21.4,11.0,2.0,0.0,1.1,2.0,2.1,0.0,17.5,2.0,0.18796296296296297,0.38796296296296295,0.36574074074074076,3.0,12.0,False,0.05555555555555555,D,B,12.0,1.0,27.0,0.22785,0.16456,0.60759,9.5,6.0,1.5,0.0,3.25,9.4,9.85,3.75,1.2,5.0,3.0,3.5,7.5,7.0,7.0,1.0,0.8,2.6,6.5,7.4,6.25,6.0,0.40694444444444444,0.4671296296296296,0.899074074074074,,,,,,5.0,,,,,,,,,20.0,,,,,,,
|
||||||
12791.0,Javy Lopez,2005 Live,Hall of Fame,R,0.0,0.32258,0.35484,0.32258,1.1,6.0,0.0,0.0,5.4,15.7,15.45,5.8,1.95,5.0,0.0,22.35,6.65,1.0,8.0,0.0,1.05,1.2,0.0,0.0,9.35,2.0,0.47129629629629627,0.6782407407407407,0.7805555555555556,0.0,0.0,False,0.0,D,A,10.0,1.0,27.0,0.23529,0.21569,0.54902,6.0,4.0,0.0,0.0,6.1,6.1,8.25,3.2,0.0,5.0,2.0,2.5,21.5,10.0,9.0,1.0,0.0,3.9,0.0,0.0,12.45,7.0,0.3162037037037037,0.3578703703703704,0.6513888888888889,,5.0,,,,,,,,,2.0,,,,,,,,,0.0,6.0,5.0
|
12791.0,Javy Lopez,2005 Live,Hall of Fame,R,0.0,0.32258,0.35484,0.32258,1.1,6.0,0.0,0.0,5.4,15.7,15.45,5.8,1.95,5.0,0.0,22.35,6.65,1.0,8.0,0.0,1.05,1.2,0.0,0.0,9.35,2.0,0.47129629629629627,0.6782407407407407,0.7805555555555556,0.0,0.0,False,0.0,D,A,10.0,1.0,27.0,0.23529,0.21569,0.54902,6.0,4.0,0.0,0.0,6.1,6.1,8.25,3.2,0.0,5.0,2.0,2.5,21.5,10.0,9.0,1.0,0.0,3.9,0.0,0.0,12.45,7.0,0.3162037037037037,0.3578703703703704,0.6513888888888889,,5.0,,,,,,,,,2.0,,,,,,,,,0.0,6.0,5.0
|
||||||
@ -5988,7 +5988,7 @@ player_id,player_name,cardset_name,rarity,hand,variant,pull_rate_vl,center_rate_
|
|||||||
12828.0,Ramon Hernandez,2005 Live,All-Star,R,0.0,0.21739,0.56522,0.21739,1.75,6.0,7.75,0.0,0.0,0.0,6.45,2.5,0.0,5.0,0.0,10.8,21.2,5.0,9.0,1.0,0.0,3.25,2.0,0.8,25.5,0.0,0.22175925925925927,0.32175925925925924,0.49722222222222223,3.0,20.0,False,0.027777777777777776,D,C,9.0,1.0,27.0,0.22368,0.17105,0.60527,1.35,5.0,0.0,0.0,4.75,4.75,6.25,7.55,5.1,5.0,0.0,9.65,10.35,10.0,5.0,0.0,0.9,0.9,2.0,18.0,9.45,2.0,0.32175925925925924,0.4111111111111111,0.5166666666666667,,3.0,,,,,,,,,5.0,,,,,,,,,-1.0,7.0,11.0
|
12828.0,Ramon Hernandez,2005 Live,All-Star,R,0.0,0.21739,0.56522,0.21739,1.75,6.0,7.75,0.0,0.0,0.0,6.45,2.5,0.0,5.0,0.0,10.8,21.2,5.0,9.0,1.0,0.0,3.25,2.0,0.8,25.5,0.0,0.22175925925925927,0.32175925925925924,0.49722222222222223,3.0,20.0,False,0.027777777777777776,D,C,9.0,1.0,27.0,0.22368,0.17105,0.60527,1.35,5.0,0.0,0.0,4.75,4.75,6.25,7.55,5.1,5.0,0.0,9.65,10.35,10.0,5.0,0.0,0.9,0.9,2.0,18.0,9.45,2.0,0.32175925925925924,0.4111111111111111,0.5166666666666667,,3.0,,,,,,,,,5.0,,,,,,,,,-1.0,7.0,11.0
|
||||||
12829.0,Xavier Nady,2005 Live,Starter,R,0.0,0.25,0.5,0.25,1.1,6.0,0.0,0.0,3.5,3.5,1.5,3.3,1.2,5.0,5.0,10.55,17.45,1.0,13.0,0.0,2.8,2.4,2.0,6.0,18.7,4.0,0.1814814814814815,0.32546296296296295,0.36018518518518516,3.0,20.0,False,0.05555555555555555,D,D,11.0,2.0,27.0,0.2766,0.21277,0.51063,6.3,4.0,3.2,0.0,1.75,5.4,7.45,2.75,0.0,5.0,0.0,12.25,14.75,14.0,4.0,1.0,0.0,2.6,4.7,0.0,10.6,8.25,0.2902777777777778,0.40370370370370373,0.6462962962962963,,,2.0,,3.0,,3.0,4.0,4.0,,,17.0,,0.0,,5.0,5.0,5.0,0.0,,,
|
12829.0,Xavier Nady,2005 Live,Starter,R,0.0,0.25,0.5,0.25,1.1,6.0,0.0,0.0,3.5,3.5,1.5,3.3,1.2,5.0,5.0,10.55,17.45,1.0,13.0,0.0,2.8,2.4,2.0,6.0,18.7,4.0,0.1814814814814815,0.32546296296296295,0.36018518518518516,3.0,20.0,False,0.05555555555555555,D,D,11.0,2.0,27.0,0.2766,0.21277,0.51063,6.3,4.0,3.2,0.0,1.75,5.4,7.45,2.75,0.0,5.0,0.0,12.25,14.75,14.0,4.0,1.0,0.0,2.6,4.7,0.0,10.6,8.25,0.2902777777777778,0.40370370370370373,0.6462962962962963,,,2.0,,3.0,,3.0,4.0,4.0,,,17.0,,0.0,,5.0,5.0,5.0,0.0,,,
|
||||||
12830.0,Sean Burroughs,2005 Live,MVP,L,0.0,0.25,0.58333,0.16667,8.2,6.0,0.0,0.0,0.0,0.0,7.1,8.5,5.7,5.0,13.0,6.4,15.6,9.0,5.0,0.0,0.3,0.0,1.8,0.0,7.4,9.0,0.32407407407407407,0.5037037037037037,0.6351851851851852,3.0,20.0,False,0.05555555555555555,D,A,10.0,2.0,27.0,0.21311,0.11475,0.67214,0.0,0.0,0.0,0.0,5.1,5.4,8.7,13.1,4.5,5.0,2.0,11.2,9.8,1.0,14.0,0.0,0.5,1.6,0.0,0.0,26.1,0.0,0.3638888888888889,0.4861111111111111,0.46111111111111114,,,,,4.0,,,,,,,,,18.0,,,,,,,,
|
12830.0,Sean Burroughs,2005 Live,MVP,L,0.0,0.25,0.58333,0.16667,8.2,6.0,0.0,0.0,0.0,0.0,7.1,8.5,5.7,5.0,13.0,6.4,15.6,9.0,5.0,0.0,0.3,0.0,1.8,0.0,7.4,9.0,0.32407407407407407,0.5037037037037037,0.6351851851851852,3.0,20.0,False,0.05555555555555555,D,A,10.0,2.0,27.0,0.21311,0.11475,0.67214,0.0,0.0,0.0,0.0,5.1,5.4,8.7,13.1,4.5,5.0,2.0,11.2,9.8,1.0,14.0,0.0,0.5,1.6,0.0,0.0,26.1,0.0,0.3638888888888889,0.4861111111111111,0.46111111111111114,,,,,4.0,,,,,,,,,18.0,,,,,,,,
|
||||||
12831.0,Omar Vizquel,2005 Live,All-Star,R,0.0,0.28571,0.42857,0.28572,0.0,0.0,0.0,0.0,10.25,10.0,1.75,0.0,3.75,0.0,0.0,12.55,16.45,10.0,8.0,0.0,1.25,3.0,2.0,1.0,23.0,5.0,0.23842592592592593,0.35462962962962963,0.42592592592592593,8.0,11.0,True,0.16666666666666666,C,B,10.0,3.0,27.0,0.26316,0.26316,0.47368,0.0,0.0,6.25,0.0,7.3,7.3,6.85,8.3,5.75,5.0,0.0,16.65,13.35,11.0,2.0,0.0,2.25,2.7,0.0,0.0,9.3,4.0,0.4097222222222222,0.5638888888888889,0.6606481481481481,,,,,,2.0,,,,,,,,,8.0,,,,,,,
|
12831.0,Omar Vizquel,2005 Live,All-Star,S,0.0,0.28571,0.42857,0.28572,0.0,0.0,0.0,0.0,10.25,10.0,1.75,0.0,3.75,0.0,0.0,12.55,16.45,10.0,8.0,0.0,1.25,3.0,2.0,1.0,23.0,5.0,0.23842592592592593,0.35462962962962963,0.42592592592592593,8.0,11.0,True,0.16666666666666666,C,B,10.0,3.0,27.0,0.26316,0.26316,0.47368,0.0,0.0,6.25,0.0,7.3,7.3,6.85,8.3,5.75,5.0,0.0,16.65,12.35,7.0,6.0,0.0,2.25,2.7,0.0,0.0,1.6,12.7,0.4097222222222222,0.5638888888888889,0.6606481481481481,,,,,,2.0,,,,,,,,,8.0,,,,,,,
|
||||||
12832.0,Edgardo Alfonzo,2005 Live,Hall of Fame,R,0.0,0.26667,0.46667,0.26666,1.5,8.0,0.0,0.0,8.75,8.75,23.85,8.9,3.2,5.0,4.0,23.6,6.4,3.0,0.0,0.0,0.8,0.0,0.0,0.0,2.25,0.0,0.5689814814814815,0.8245370370370371,0.8837962962962963,3.0,20.0,False,0.027777777777777776,D,A,10.0,1.0,27.0,0.26471,0.20588,0.52941,0.0,3.0,0.0,0.0,9.0,9.05,4.2,2.5,5.7,5.0,0.0,17.6,10.4,7.0,11.0,0.0,0.3,1.95,2.0,0.0,19.3,0.0,0.3189814814814815,0.48194444444444445,0.5277777777777778,,,,3.0,5.0,,,,,,,,0.0,16.0,,,,,,,,
|
12832.0,Edgardo Alfonzo,2005 Live,Hall of Fame,R,0.0,0.26667,0.46667,0.26666,1.5,8.0,0.0,0.0,8.75,8.75,23.85,8.9,3.2,5.0,4.0,23.6,6.4,3.0,0.0,0.0,0.8,0.0,0.0,0.0,2.25,0.0,0.5689814814814815,0.8245370370370371,0.8837962962962963,3.0,20.0,False,0.027777777777777776,D,A,10.0,1.0,27.0,0.26471,0.20588,0.52941,0.0,3.0,0.0,0.0,9.0,9.05,4.2,2.5,5.7,5.0,0.0,17.6,10.4,7.0,11.0,0.0,0.3,1.95,2.0,0.0,19.3,0.0,0.3189814814814815,0.48194444444444445,0.5277777777777778,,,,3.0,5.0,,,,,,,,0.0,16.0,,,,,,,,
|
||||||
12833.0,Ray Durham,2005 Live,Starter,R,0.0,0.20833,0.58333,0.20834,0.0,0.0,0.0,0.0,12.9,12.85,4.2,3.75,4.5,5.0,0.0,18.5,6.5,10.0,10.0,0.0,0.5,3.15,2.0,0.0,9.15,5.0,0.3768518518518518,0.5481481481481482,0.6152777777777778,3.0,9.0,False,0.05555555555555555,D,C,11.0,3.0,27.0,0.19231,0.26923,0.53846,0.0,0.0,0.0,0.0,3.75,3.5,4.2,5.7,1.9,5.0,7.0,17.4,14.6,11.0,6.0,0.0,0.1,1.5,3.0,0.0,23.35,0.0,0.19953703703703704,0.425462962962963,0.26666666666666666,,,,2.0,,,,,,,,,12.0,,,,,,,,,
|
12833.0,Ray Durham,2005 Live,Starter,R,0.0,0.20833,0.58333,0.20834,0.0,0.0,0.0,0.0,12.9,12.85,4.2,3.75,4.5,5.0,0.0,18.5,6.5,10.0,10.0,0.0,0.5,3.15,2.0,0.0,9.15,5.0,0.3768518518518518,0.5481481481481482,0.6152777777777778,3.0,9.0,False,0.05555555555555555,D,C,11.0,3.0,27.0,0.19231,0.26923,0.53846,0.0,0.0,0.0,0.0,3.75,3.5,4.2,5.7,1.9,5.0,7.0,17.4,14.6,11.0,6.0,0.0,0.1,1.5,3.0,0.0,23.35,0.0,0.19953703703703704,0.425462962962963,0.26666666666666666,,,,2.0,,,,,,,,,12.0,,,,,,,,,
|
||||||
12834.0,Marquis Grissom,2005 Live,Replacement,R,0.0,0.25,0.5,0.25,0.0,0.0,0.0,0.0,5.8,5.8,5.7,8.6,3.2,5.0,0.0,6.0,14.0,10.0,13.0,0.0,0.8,3.2,3.0,5.5,13.4,5.0,0.29259259259259257,0.34814814814814815,0.4,3.0,20.0,False,0.05555555555555555,C,D,14.0,2.0,27.0,0.18966,0.27586,0.53448,1.05,5.0,0.0,0.0,3.2,2.5,3.2,2.7,3.2,5.0,0.0,2.2,22.8,15.0,6.0,0.0,0.8,2.5,4.95,5.6,18.3,4.0,0.19305555555555556,0.21342592592592594,0.34444444444444444,,,,,,,,5.0,,,,,,,,,3.0,,2.0,,,
|
12834.0,Marquis Grissom,2005 Live,Replacement,R,0.0,0.25,0.5,0.25,0.0,0.0,0.0,0.0,5.8,5.8,5.7,8.6,3.2,5.0,0.0,6.0,14.0,10.0,13.0,0.0,0.8,3.2,3.0,5.5,13.4,5.0,0.29259259259259257,0.34814814814814815,0.4,3.0,20.0,False,0.05555555555555555,C,D,14.0,2.0,27.0,0.18966,0.27586,0.53448,1.05,5.0,0.0,0.0,3.2,2.5,3.2,2.7,3.2,5.0,0.0,2.2,22.8,15.0,6.0,0.0,0.8,2.5,4.95,5.6,18.3,4.0,0.19305555555555556,0.21342592592592594,0.34444444444444444,,,,,,,,5.0,,,,,,,,,3.0,,2.0,,,
|
||||||
@ -6009,13 +6009,13 @@ player_id,player_name,cardset_name,rarity,hand,variant,pull_rate_vl,center_rate_
|
|||||||
12849.0,Morgan Ensberg,2005 Live,All-Star,R,0.0,0.32,0.36,0.32,1.4,7.0,0.0,0.0,4.25,4.2,8.05,0.0,4.2,5.0,0.0,27.0,7.0,5.0,13.0,1.0,1.8,1.8,2.6,4.7,10.0,0.0,0.2601851851851852,0.5101851851851852,0.47453703703703703,3.0,6.0,False,0.1111111111111111,D,B,12.0,2.0,27.0,0.25581,0.2093,0.53489,1.4,3.0,0.0,0.0,4.2,3.9,4.75,6.65,2.25,5.0,0.0,11.8,39.2,3.0,2.0,0.0,2.75,0.0,1.7,0.0,16.4,0.0,0.2513888888888889,0.36064814814814816,0.40694444444444444,,,,,1.0,,,,,,,,,18.0,,,,,,,,
|
12849.0,Morgan Ensberg,2005 Live,All-Star,R,0.0,0.32,0.36,0.32,1.4,7.0,0.0,0.0,4.25,4.2,8.05,0.0,4.2,5.0,0.0,27.0,7.0,5.0,13.0,1.0,1.8,1.8,2.6,4.7,10.0,0.0,0.2601851851851852,0.5101851851851852,0.47453703703703703,3.0,6.0,False,0.1111111111111111,D,B,12.0,2.0,27.0,0.25581,0.2093,0.53489,1.4,3.0,0.0,0.0,4.2,3.9,4.75,6.65,2.25,5.0,0.0,11.8,39.2,3.0,2.0,0.0,2.75,0.0,1.7,0.0,16.4,0.0,0.2513888888888889,0.36064814814814816,0.40694444444444444,,,,,1.0,,,,,,,,,18.0,,,,,,,,
|
||||||
12850.0,Adam Everett,2005 Live,Reserve,R,0.0,0.21053,0.57895,0.21052,0.0,0.0,0.0,0.0,5.7,5.4,3.8,5.7,1.9,5.0,0.0,12.35,26.65,15.0,4.0,0.0,0.1,1.6,2.0,0.0,14.8,4.0,0.23148148148148148,0.3458333333333333,0.33425925925925926,3.0,13.0,True,0.19444444444444445,C,C,13.0,2.0,27.0,0.31429,0.15714,0.52857,1.05,2.0,0.0,0.0,7.55,7.55,3.25,4.75,1.65,5.0,2.0,14.7,17.3,9.0,7.0,0.0,1.35,1.4,3.0,0.0,15.45,4.0,0.2712962962962963,0.42592592592592593,0.46805555555555556,,,,,,1.0,,,,,,,,,16.0,,,,,,,
|
12850.0,Adam Everett,2005 Live,Reserve,R,0.0,0.21053,0.57895,0.21052,0.0,0.0,0.0,0.0,5.7,5.4,3.8,5.7,1.9,5.0,0.0,12.35,26.65,15.0,4.0,0.0,0.1,1.6,2.0,0.0,14.8,4.0,0.23148148148148148,0.3458333333333333,0.33425925925925926,3.0,13.0,True,0.19444444444444445,C,C,13.0,2.0,27.0,0.31429,0.15714,0.52857,1.05,2.0,0.0,0.0,7.55,7.55,3.25,4.75,1.65,5.0,2.0,14.7,17.3,9.0,7.0,0.0,1.35,1.4,3.0,0.0,15.45,4.0,0.2712962962962963,0.42592592592592593,0.46805555555555556,,,,,,1.0,,,,,,,,,16.0,,,,,,,
|
||||||
12851.0,Jason Lane,2005 Live,Replacement,R,0.0,0.30769,0.38462,0.30769,0.0,0.0,0.0,0.0,3.3,3.4,2.7,3.4,1.2,0.0,0.0,5.7,41.3,7.0,6.0,0.0,2.8,3.6,3.0,0.0,20.6,4.0,0.12962962962962962,0.1824074074074074,0.19166666666666668,3.0,14.0,False,0.08333333333333333,D,B,10.0,2.0,27.0,0.27632,0.13158,0.5921,2.1,8.0,3.25,0.0,4.75,13.8,7.85,3.2,0.0,5.0,0.0,7.4,11.6,10.0,0.0,1.0,0.0,4.1,7.0,0.0,13.95,5.0,0.3837962962962963,0.45231481481481484,0.7851851851851852,,,,,,,4.0,3.0,1.0,,,,,,,6.0,6.0,6.0,-2.0,,,
|
12851.0,Jason Lane,2005 Live,Replacement,R,0.0,0.30769,0.38462,0.30769,0.0,0.0,0.0,0.0,3.3,3.4,2.7,3.4,1.2,0.0,0.0,5.7,41.3,7.0,6.0,0.0,2.8,3.6,3.0,0.0,20.6,4.0,0.12962962962962962,0.1824074074074074,0.19166666666666668,3.0,14.0,False,0.08333333333333333,D,B,10.0,2.0,27.0,0.27632,0.13158,0.5921,2.1,8.0,3.25,0.0,4.75,13.8,7.85,3.2,0.0,5.0,0.0,7.4,11.6,10.0,0.0,1.0,0.0,4.1,7.0,0.0,13.95,5.0,0.3837962962962963,0.45231481481481484,0.7851851851851852,,,,,,,4.0,3.0,1.0,,,,,,,6.0,6.0,6.0,-2.0,,,
|
||||||
12852.0,Jose Reyes,2005 Live,Reserve,R,0.0,0.25806,0.48387,0.25807,1.7,6.0,0.0,0.0,3.9,3.8,6.1,9.2,3.2,5.0,0.0,0.0,24.0,3.0,10.0,0.0,0.8,1.5,2.0,1.0,24.8,2.0,0.30925925925925923,0.30925925925925923,0.5111111111111111,10.0,13.0,True,0.4722222222222222,B,C,12.0,1.0,27.0,0.15152,0.22727,0.62121,1.35,3.0,0.0,0.0,6.5,6.5,3.2,4.5,1.5,5.0,2.0,0.0,20.0,9.0,7.0,0.0,3.5,1.15,3.0,0.0,26.8,4.0,0.2550925925925926,0.27361111111111114,0.4546296296296296,,,,,,4.0,,,,,,,,,18.0,,,,,,,
|
12852.0,Jose Reyes,2005 Live,Reserve,S,0.0,0.25806,0.48387,0.25807,1.7,6.0,0.0,0.0,3.9,3.8,6.1,9.2,3.2,5.0,0.0,0.0,17.0,6.0,15.0,0.0,0.8,1.5,2.0,1.0,24.0,1.8,0.30925925925925923,0.30925925925925923,0.5111111111111111,10.0,13.0,True,0.4722222222222222,B,C,12.0,1.0,27.0,0.15152,0.22727,0.62121,1.35,3.0,0.0,0.0,6.5,6.5,3.2,4.5,1.5,5.0,2.0,0.0,21.0,6.0,12.0,0.0,3.5,1.15,3.0,0.0,26.3,1.5,0.2550925925925926,0.27361111111111114,0.4546296296296296,,,,,,4.0,,,,,,,,,18.0,,,,,,,
|
||||||
12853.0,Kazuo Matsui,2005 Live,Reserve,R,0.0,0.17391,0.6,0.22609,0.0,0.0,0.0,0.0,0.0,0.0,10.75,16.0,5.7,5.0,14.0,0.0,13.0,15.0,8.0,0.0,0.3,2.0,2.0,0.0,15.25,1.0,0.3236111111111111,0.4532407407407407,0.3236111111111111,3.0,15.0,False,0.08333333333333333,A,C,10.0,2.0,27.0,0.23333,0.25,0.51667,1.05,4.0,0.0,0.0,3.0,1.95,4.9,6.7,2.25,5.0,2.0,8.6,11.4,1.0,16.0,0.0,2.75,0.0,2.0,0.0,33.4,2.0,0.22546296296296298,0.3236111111111111,0.3560185185185185,,,,2.0,,,,,,,,,20.0,,,,,,,,,
|
12853.0,Kazuo Matsui,2005 Live,Reserve,R,0.0,0.17391,0.6,0.22609,0.0,0.0,0.0,0.0,0.0,0.0,10.75,16.0,5.7,5.0,14.0,0.0,13.0,15.0,8.0,0.0,0.3,2.0,2.0,0.0,15.25,1.0,0.3236111111111111,0.4532407407407407,0.3236111111111111,3.0,15.0,False,0.08333333333333333,A,C,10.0,2.0,27.0,0.23333,0.25,0.51667,1.05,4.0,0.0,0.0,3.0,1.95,4.9,6.7,2.25,5.0,2.0,8.6,11.4,1.0,16.0,0.0,2.75,0.0,2.0,0.0,33.4,2.0,0.22546296296296298,0.3236111111111111,0.3560185185185185,,,,2.0,,,,,,,,,20.0,,,,,,,,,
|
||||||
12854.0,Carlos Beltran,2005 Live,Starter,R,0.0,0.35484,0.29032,0.35484,0.0,0.0,0.0,0.0,7.6,7.55,6.0,9.05,3.2,5.0,0.0,4.5,28.5,14.0,0.0,0.0,0.8,1.45,1.0,0.0,14.35,5.0,0.33240740740740743,0.37407407407407406,0.4726851851851852,9.0,12.0,True,0.16666666666666666,C,B,14.0,1.0,27.0,0.18644,0.15254,0.66102,5.7,3.0,0.0,0.0,3.2,2.7,5.7,8.25,2.75,5.0,0.0,14.95,18.05,1.0,9.0,0.0,2.25,0.0,3.3,0.0,21.15,2.0,0.29907407407407405,0.4375,0.5537037037037037,,,,,,,,2.0,,,,,,,,,2.0,,0.0,,,
|
12854.0,Carlos Beltran,2005 Live,Starter,S,0.0,0.35484,0.29032,0.35484,0.0,0.0,0.0,0.0,7.6,7.55,6.0,9.05,3.2,5.0,0.0,4.5,22.5,11.0,5.0,0.0,0.8,1.45,1.0,0.0,13.4,9.95,0.33240740740740743,0.37407407407407406,0.4726851851851852,9.0,12.0,True,0.16666666666666666,C,B,14.0,1.0,27.0,0.18644,0.15254,0.66102,5.7,3.0,0.0,0.0,3.2,2.7,5.7,8.25,2.75,5.0,0.0,14.95,5.05,3.0,20.0,0.0,2.25,0.0,3.3,0.0,20.4,2.75,0.29907407407407405,0.4375,0.5537037037037037,,,,,,,,2.0,,,,,,,,,2.0,,0.0,,,
|
||||||
12855.0,Cliff Floyd,2005 Live,Hall of Fame,L,0.0,0.25,0.58333,0.16667,14.9,10.0,0.0,0.0,0.0,0.0,13.25,5.1,1.6,5.0,0.0,13.4,12.6,5.0,0.0,1.0,0.4,5.0,5.1,0.0,9.65,6.0,0.3921296296296296,0.5162037037037037,0.9449074074074074,3.0,14.0,False,0.1111111111111111,D,A,10.0,1.0,27.0,0.2093,0.32558,0.46512,6.4,4.0,0.0,0.0,3.2,2.5,8.3,12.5,4.2,5.0,0.0,14.95,18.05,4.0,2.0,0.0,1.8,1.1,0.0,0.0,20.0,0.0,0.3851851851851852,0.5236111111111111,0.6712962962962963,,,,,,,1.0,,,,,,,,,1.0,,,0.0,,,
|
12855.0,Cliff Floyd,2005 Live,Hall of Fame,L,0.0,0.25,0.58333,0.16667,14.9,10.0,0.0,0.0,0.0,0.0,13.25,5.1,1.6,5.0,0.0,13.4,12.6,5.0,0.0,1.0,0.4,5.0,5.1,0.0,9.65,6.0,0.3921296296296296,0.5162037037037037,0.9449074074074074,3.0,14.0,False,0.1111111111111111,D,A,10.0,1.0,27.0,0.2093,0.32558,0.46512,6.4,4.0,0.0,0.0,3.2,2.5,8.3,12.5,4.2,5.0,0.0,14.95,18.05,4.0,2.0,0.0,1.8,1.1,0.0,0.0,20.0,0.0,0.3851851851851852,0.5236111111111111,0.6712962962962963,,,,,,,1.0,,,,,,,,,1.0,,,0.0,,,
|
||||||
12856.0,David Wright,2005 Live,Hall of Fame,R,0.0,0.28571,0.42857,0.28572,6.85,5.0,0.0,0.0,3.2,8.7,9.65,0.0,4.8,5.0,0.0,8.95,18.05,2.0,11.0,1.0,1.2,2.45,3.0,0.0,7.15,10.0,0.3537037037037037,0.43657407407407406,0.7236111111111111,8.0,11.0,True,0.1388888888888889,D,B,12.0,1.0,27.0,0.19512,0.29268,0.5122,4.5,3.0,0.0,0.0,6.85,6.85,7.75,3.2,0.0,5.0,3.0,24.0,15.0,6.0,2.0,1.0,0.0,0.0,1.65,8.4,4.8,5.0,0.30694444444444446,0.5569444444444445,0.600462962962963,,,,,5.0,,,,,,,,,26.0,,,,,,,,
|
12856.0,David Wright,2005 Live,Hall of Fame,R,0.0,0.28571,0.42857,0.28572,6.85,5.0,0.0,0.0,3.2,8.7,9.65,0.0,4.8,5.0,0.0,8.95,18.05,2.0,11.0,1.0,1.2,2.45,3.0,0.0,7.15,10.0,0.3537037037037037,0.43657407407407406,0.7236111111111111,8.0,11.0,True,0.1388888888888889,D,B,12.0,1.0,27.0,0.19512,0.29268,0.5122,4.5,3.0,0.0,0.0,6.85,6.85,7.75,3.2,0.0,5.0,3.0,24.0,15.0,6.0,2.0,1.0,0.0,0.0,1.65,8.4,4.8,5.0,0.30694444444444446,0.5569444444444445,0.600462962962963,,,,,5.0,,,,,,,,,26.0,,,,,,,,
|
||||||
12857.0,Victor Diaz,2005 Live,MVP,R,0.0,0.21429,0.57143,0.21428,0.0,0.0,0.0,0.0,11.35,11.35,7.55,11.35,3.8,5.0,0.0,23.5,15.5,7.0,4.0,0.0,0.2,0.0,1.65,0.0,1.75,4.0,0.44351851851851853,0.6611111111111111,0.6537037037037037,6.0,9.0,False,0.1388888888888889,D,A,12.0,2.0,27.0,0.18421,0.21053,0.60526,5.1,4.0,3.25,0.0,2.4,6.7,4.45,0.0,2.25,5.0,3.0,23.35,18.65,3.0,7.0,1.0,2.75,1.2,4.0,7.9,2.0,1.0,0.2652777777777778,0.5092592592592593,0.6069444444444444,,,,,,,3.0,,3.0,,,,,,,4.0,,4.0,1.0,,,
|
12857.0,Victor Diaz,2005 Live,MVP,R,0.0,0.21429,0.57143,0.21428,0.0,0.0,0.0,0.0,11.35,11.35,7.55,11.35,3.8,5.0,0.0,23.5,15.5,7.0,4.0,0.0,0.2,0.0,1.65,0.0,1.75,4.0,0.44351851851851853,0.6611111111111111,0.6537037037037037,6.0,9.0,False,0.1388888888888889,D,A,12.0,2.0,27.0,0.18421,0.21053,0.60526,5.1,4.0,3.25,0.0,2.4,6.7,4.45,0.0,2.25,5.0,3.0,23.35,18.65,3.0,7.0,1.0,2.75,1.2,4.0,7.9,2.0,1.0,0.2652777777777778,0.5092592592592593,0.6069444444444444,,,,,,,3.0,,3.0,,,,,,,4.0,,4.0,1.0,,,
|
||||||
12858.0,Jimmy Rollins,2005 Live,Replacement,R,0.0,0.27586,0.44828,0.27586,0.0,0.0,0.0,0.0,0.0,0.0,6.4,9.7,3.3,5.0,0.0,13.0,4.0,9.0,10.0,0.0,2.7,2.0,2.0,1.6,37.3,2.0,0.20277777777777778,0.32314814814814813,0.20277777777777778,12.0,15.0,True,0.2777777777777778,C,C,12.0,1.0,27.0,0.2,0.43333,0.36667,1.35,7.0,2.75,0.0,1.4,1.4,5.4,7.85,2.7,5.0,0.0,9.0,15.0,5.0,10.0,0.0,0.3,2.6,1.65,0.0,28.6,1.0,0.2671296296296296,0.350462962962963,0.4787037037037037,,,,,,1.0,,,,,,,,,14.0,,,,,,,
|
12858.0,Jimmy Rollins,2005 Live,Replacement,S,0.0,0.27586,0.44828,0.27586,0.0,0.0,0.0,0.0,0.0,0.0,6.4,9.7,3.3,5.0,0.0,13.0,2.0,13.0,18.0,0.0,2.7,2.0,2.0,1.6,24.0,5.3,0.20277777777777778,0.32314814814814813,0.20277777777777778,12.0,15.0,True,0.2777777777777778,C,C,12.0,1.0,27.0,0.2,0.43333,0.36667,1.35,7.0,2.75,0.0,1.4,1.4,5.4,7.85,2.7,5.0,0.0,9.0,2.0,8.0,21.0,0.0,0.3,4.25,1.0,0.0,22.45,5.15,0.2671296296296296,0.350462962962963,0.4787037037037037,,,,,,1.0,,,,,,,,,14.0,,,,,,,
|
||||||
12859.0,Bobby Abreu,2005 Live,Starter,L,0.0,0.13636,0.59091,0.27273,0.0,0.0,0.0,0.0,6.25,6.25,4.75,6.85,2.4,5.0,6.0,9.05,10.95,5.0,15.0,0.0,1.6,1.75,1.0,0.0,26.15,0.0,0.26851851851851855,0.4078703703703704,0.38425925925925924,3.0,12.0,True,0.19444444444444445,D,C,12.0,3.0,27.0,0.3,0.52,0.18,1.25,3.0,0.0,0.0,4.2,3.75,6.05,7.25,5.1,5.0,2.0,21.0,8.0,6.0,11.0,0.0,0.9,0.0,2.0,0.0,17.5,4.0,0.29259259259259257,0.5055555555555555,0.4425925925925926,,,,,,,,,3.0,,,,,,,,,3.0,1.0,,,
|
12859.0,Bobby Abreu,2005 Live,Starter,L,0.0,0.13636,0.59091,0.27273,0.0,0.0,0.0,0.0,6.25,6.25,4.75,6.85,2.4,5.0,6.0,9.05,10.95,5.0,15.0,0.0,1.6,1.75,1.0,0.0,26.15,0.0,0.26851851851851855,0.4078703703703704,0.38425925925925924,3.0,12.0,True,0.19444444444444445,D,C,12.0,3.0,27.0,0.3,0.52,0.18,1.25,3.0,0.0,0.0,4.2,3.75,6.05,7.25,5.1,5.0,2.0,21.0,8.0,6.0,11.0,0.0,0.9,0.0,2.0,0.0,17.5,4.0,0.29259259259259257,0.5055555555555555,0.4425925925925926,,,,,,,,,3.0,,,,,,,,,3.0,1.0,,,
|
||||||
12860.0,Pat Burrell,2005 Live,MVP,R,0.0,0.15,0.6,0.25,11.1,8.0,0.0,0.0,1.65,4.75,7.75,3.2,0.0,5.0,0.0,33.35,7.65,3.0,8.0,1.0,0.0,4.25,3.9,0.0,3.4,2.0,0.3236111111111111,0.6324074074074074,0.8023148148148148,0.0,0.0,False,0.0,D,B,10.0,2.0,27.0,0.21277,0.29787,0.48936,1.4,6.0,0.0,0.0,5.7,5.7,4.55,6.85,2.6,5.0,0.0,9.6,20.4,6.0,7.0,0.0,1.4,3.9,3.0,4.75,10.15,4.0,0.29907407407407405,0.38796296296296295,0.5268518518518519,,,,,,,2.0,,,,,,,,,6.0,,,0.0,,,
|
12860.0,Pat Burrell,2005 Live,MVP,R,0.0,0.15,0.6,0.25,11.1,8.0,0.0,0.0,1.65,4.75,7.75,3.2,0.0,5.0,0.0,33.35,7.65,3.0,8.0,1.0,0.0,4.25,3.9,0.0,3.4,2.0,0.3236111111111111,0.6324074074074074,0.8023148148148148,0.0,0.0,False,0.0,D,B,10.0,2.0,27.0,0.21277,0.29787,0.48936,1.4,6.0,0.0,0.0,5.7,5.7,4.55,6.85,2.6,5.0,0.0,9.6,20.4,6.0,7.0,0.0,1.4,3.9,3.0,4.75,10.15,4.0,0.29907407407407405,0.38796296296296295,0.5268518518518519,,,,,,,2.0,,,,,,,,,6.0,,,0.0,,,
|
||||||
12861.0,David Bell,2005 Live,Replacement,R,0.0,0.32,0.36,0.32,0.0,0.0,0.0,0.0,12.0,11.95,3.75,5.7,1.5,5.0,0.0,9.25,21.75,12.0,2.0,0.0,4.5,2.05,2.0,0.0,14.55,0.0,0.34629629629629627,0.43194444444444446,0.5680555555555555,0.0,0.0,False,0.0,D,D,10.0,1.0,27.0,0.25926,0.16667,0.57407,0.0,3.0,0.0,0.0,3.2,2.75,2.2,2.5,1.6,5.0,0.0,8.7,21.3,10.0,12.0,0.0,0.4,2.25,3.0,14.6,11.5,4.0,0.15046296296296297,0.2310185185185185,0.24722222222222223,,,,,2.0,,,,,,,,,24.0,,,,,,,,
|
12861.0,David Bell,2005 Live,Replacement,R,0.0,0.32,0.36,0.32,0.0,0.0,0.0,0.0,12.0,11.95,3.75,5.7,1.5,5.0,0.0,9.25,21.75,12.0,2.0,0.0,4.5,2.05,2.0,0.0,14.55,0.0,0.34629629629629627,0.43194444444444446,0.5680555555555555,0.0,0.0,False,0.0,D,D,10.0,1.0,27.0,0.25926,0.16667,0.57407,0.0,3.0,0.0,0.0,3.2,2.75,2.2,2.5,1.6,5.0,0.0,8.7,21.3,10.0,12.0,0.0,0.4,2.25,3.0,14.6,11.5,4.0,0.15046296296296297,0.2310185185185185,0.24722222222222223,,,,,2.0,,,,,,,,,24.0,,,,,,,,
|
||||||
@ -6035,3 +6035,4 @@ player_id,player_name,cardset_name,rarity,hand,variant,pull_rate_vl,center_rate_
|
|||||||
12875.0,Josh Phelps,2005 Live,Starter,R,0.0,0.28571,0.42857,0.28572,1.4,8.0,0.0,0.0,0.0,0.0,4.25,6.25,2.1,5.0,9.0,13.35,18.65,9.0,2.0,0.0,0.9,1.0,2.6,0.0,20.5,4.0,0.18981481481481483,0.39675925925925926,0.3398148148148148,0.0,0.0,False,0.0,D,A,10.0,2.0,27.0,0.21053,0.23684,0.55263,0.0,0.0,0.0,0.0,9.7,9.65,6.25,9.4,3.2,5.0,3.0,5.1,19.9,8.0,6.0,0.0,0.8,1.35,2.0,0.0,13.65,5.0,0.3768518518518518,0.45185185185185184,0.5560185185185185,,,,,,,,,,,,,,,,,,,,,,
|
12875.0,Josh Phelps,2005 Live,Starter,R,0.0,0.28571,0.42857,0.28572,1.4,8.0,0.0,0.0,0.0,0.0,4.25,6.25,2.1,5.0,9.0,13.35,18.65,9.0,2.0,0.0,0.9,1.0,2.6,0.0,20.5,4.0,0.18981481481481483,0.39675925925925926,0.3398148148148148,0.0,0.0,False,0.0,D,A,10.0,2.0,27.0,0.21053,0.23684,0.55263,0.0,0.0,0.0,0.0,9.7,9.65,6.25,9.4,3.2,5.0,3.0,5.1,19.9,8.0,6.0,0.0,0.8,1.35,2.0,0.0,13.65,5.0,0.3768518518518518,0.45185185185185184,0.5560185185185185,,,,,,,,,,,,,,,,,,,,,,
|
||||||
12876.0,DAngelo Jimenez,2005 Live,Reserve,R,0.0,0.16667,0.6,0.23333,0.0,0.0,0.0,0.0,7.95,7.95,10.7,6.4,15.0,5.0,0.0,10.8,10.2,15.0,2.0,0.0,0.0,0.0,1.05,0.0,10.95,5.0,0.4675925925925926,0.5675925925925925,0.6148148148148148,3.0,7.0,False,0.1111111111111111,D,C,12.0,1.0,27.0,0.21429,0.28571,0.5,0.0,0.0,0.0,0.0,3.2,2.75,0.0,3.2,0.0,5.0,0.0,17.1,32.9,9.0,5.0,0.0,0.0,2.25,2.8,0.0,21.8,3.0,0.10787037037037037,0.2662037037037037,0.16296296296296298,,,,3.0,,,,,,,,,11.0,,,,,,,,,
|
12876.0,DAngelo Jimenez,2005 Live,Reserve,R,0.0,0.16667,0.6,0.23333,0.0,0.0,0.0,0.0,7.95,7.95,10.7,6.4,15.0,5.0,0.0,10.8,10.2,15.0,2.0,0.0,0.0,0.0,1.05,0.0,10.95,5.0,0.4675925925925926,0.5675925925925925,0.6148148148148148,3.0,7.0,False,0.1111111111111111,D,C,12.0,1.0,27.0,0.21429,0.28571,0.5,0.0,0.0,0.0,0.0,3.2,2.75,0.0,3.2,0.0,5.0,0.0,17.1,32.9,9.0,5.0,0.0,0.0,2.25,2.8,0.0,21.8,3.0,0.10787037037037037,0.2662037037037037,0.16296296296296298,,,,3.0,,,,,,,,,11.0,,,,,,,,,
|
||||||
12877.0,Jeff Bagwell,2005 Live,MVP,R,0.0,0.25,0.5,0.25,8.35,5.0,0.0,0.0,0.0,0.0,6.6,9.85,3.3,5.0,0.0,19.25,23.75,5.0,5.0,0.0,2.7,0.0,1.65,0.0,12.55,0.0,0.30648148148148147,0.4847222222222222,0.6078703703703704,0.0,0.0,False,0.0,D,C,8.0,2.0,27.0,0.2987,0.1039,0.5974,1.65,4.0,0.0,0.0,5.4,5.1,3.9,4.75,3.2,5.0,0.0,19.55,18.45,5.0,5.0,0.0,0.8,1.25,3.0,0.0,19.95,2.0,0.2638888888888889,0.4449074074074074,0.4625,,,2.0,,,,,,,,,0.0,,,,,,,,,,
|
12877.0,Jeff Bagwell,2005 Live,MVP,R,0.0,0.25,0.5,0.25,8.35,5.0,0.0,0.0,0.0,0.0,6.6,9.85,3.3,5.0,0.0,19.25,23.75,5.0,5.0,0.0,2.7,0.0,1.65,0.0,12.55,0.0,0.30648148148148147,0.4847222222222222,0.6078703703703704,0.0,0.0,False,0.0,D,C,8.0,2.0,27.0,0.2987,0.1039,0.5974,1.65,4.0,0.0,0.0,5.4,5.1,3.9,4.75,3.2,5.0,0.0,19.55,18.45,5.0,5.0,0.0,0.8,1.25,3.0,0.0,19.95,2.0,0.2638888888888889,0.4449074074074074,0.4625,,,2.0,,,,,,,,,0.0,,,,,,,,,,
|
||||||
|
13007.0,Will the Thrill,2005 Custom,Starter,R,0.0,0.38,0.36,0.26,0.0,1.0,0.0,0.0,5.6,4.3,10.35,5.0,8.4,5.0,0.0,8.1,13.9,11.0,4.0,0.0,0.6,3.7,3.0,9.05,3.0,12.0,0.33935185185185185,0.41435185185185186,0.4449074074074074,7.0,11.0,False,0.055555,C,A,12.0,1.0,29.0,0.38,0.35,0.27,0.0,1.0,0.0,0.0,5.0,3.2,9.1,5.4,8.65,5.0,0.0,8.1,19.9,12.0,0.0,0.0,1.35,3.8,4.0,8.9,6.0,6.6,0.31805555555555554,0.39305555555555555,0.4078703703703704,,,,4.0,,,3.0,,,,,,12.0,,,7.0,,,2.0,,,
|
||||||
|
|||||||
|
Can't render this file because it is too large.
|
File diff suppressed because it is too large
Load Diff
@ -626,7 +626,7 @@ player_id,player_name,cardset_name,rarity,hand,variant,homerun_vl,bp_homerun_vl,
|
|||||||
7539.0,Gio Gonzalez,2018 Season,Starter,L,0.0,0.0,1.0,0.0,0.0,0.0,6.25,3.2,0.0,2.75,5.0,0.0,6.2,29.8,4.0,1.75,4.0,6.8,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14074074074074075,0.19814814814814816,0.2125,0.0,6.0,-3.0,5.0,1.0,,#1WL-C,3.0,13.0,1.6,1.0,0.0,0.0,0.0,5.1,5.4,0.0,5.0,5.0,0.0,13.0,21.0,4.0,4.3,4.0,5.6,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18611111111111112,0.30648148148148147,0.2916666666666667,2,10
|
7539.0,Gio Gonzalez,2018 Season,Starter,L,0.0,0.0,1.0,0.0,0.0,0.0,6.25,3.2,0.0,2.75,5.0,0.0,6.2,29.8,4.0,1.75,4.0,6.8,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14074074074074075,0.19814814814814816,0.2125,0.0,6.0,-3.0,5.0,1.0,,#1WL-C,3.0,13.0,1.6,1.0,0.0,0.0,0.0,5.1,5.4,0.0,5.0,5.0,0.0,13.0,21.0,4.0,4.3,4.0,5.6,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18611111111111112,0.30648148148148147,0.2916666666666667,2,10
|
||||||
7540.0,Mike Fiers,2018 Season,All-Star,R,0.0,1.9,2.0,0.0,0.0,0.0,4.2,3.2,0.0,3.2,5.0,0.0,7.8,28.2,4.0,7.9,5.0,5.8,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14814814814814814,0.22037037037037038,0.2675925925925926,0.0,5.0,0.0,6.0,1.0,,#1WR-C,3.0,13.0,1.8,3.0,0.0,0.0,0.0,4.2,4.8,0.0,4.75,5.0,2.0,3.7,28.3,4.0,0.0,5.0,7.2,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18101851851851852,0.2337962962962963,0.31157407407407406,3,0
|
7540.0,Mike Fiers,2018 Season,All-Star,R,0.0,1.9,2.0,0.0,0.0,0.0,4.2,3.2,0.0,3.2,5.0,0.0,7.8,28.2,4.0,7.9,5.0,5.8,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14814814814814814,0.22037037037037038,0.2675925925925926,0.0,5.0,0.0,6.0,1.0,,#1WR-C,3.0,13.0,1.8,3.0,0.0,0.0,0.0,4.2,4.8,0.0,4.75,5.0,2.0,3.7,28.3,4.0,0.0,5.0,7.2,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18101851851851852,0.2337962962962963,0.31157407407407406,3,0
|
||||||
7541.0,Tyson Ross,2018 Season,Starter,R,0.0,1.6,2.0,0.0,0.0,0.0,5.4,6.2,0.0,6.1,5.0,0.0,13.3,18.7,0.0,4.0,0.0,7.8,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2111111111111111,0.33425925925925926,0.3333333333333333,0.0,5.0,-2.0,5.0,4.0,,#1WR-C,1.0,13.0,1.65,1.0,0.0,0.0,0.0,3.15,1.4,0.0,1.4,5.0,1.0,9.0,28.0,4.0,6.2,5.0,5.6,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.09814814814814815,0.19074074074074074,0.18703703703703703,2,15
|
7541.0,Tyson Ross,2018 Season,Starter,R,0.0,1.6,2.0,0.0,0.0,0.0,5.4,6.2,0.0,6.1,5.0,0.0,13.3,18.7,0.0,4.0,0.0,7.8,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2111111111111111,0.33425925925925926,0.3333333333333333,0.0,5.0,-2.0,5.0,4.0,,#1WR-C,1.0,13.0,1.65,1.0,0.0,0.0,0.0,3.15,1.4,0.0,1.4,5.0,1.0,9.0,28.0,4.0,6.2,5.0,5.6,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.09814814814814815,0.19074074074074074,0.18703703703703703,2,15
|
||||||
7542.0,Jaime Garcia,2018 Season,Reserve,L,0.0,1.5,2.0,0.0,0.0,3.5,0.0,1.35,1.4,0.0,5.0,1.0,7.55,28.45,2.4,8.65,0.0,3.4,12.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10416666666666667,0.18333333333333335,0.20601851851851852,4.0,17.0,0.0,2.0,1.0,,#1WL-C,2.0,13.0,1.35,3.0,0.0,0.0,0.0,6.65,4.75,0.0,4.75,5.0,0.0,15.7,24.3,1.05,4.35,0.0,1.1,7.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19907407407407407,0.34444444444444444,0.33981481481481485,4,51
|
7542.0,Jaime Garcia,2018 Season,Reserve,L,0.0,1.5,2.0,0.0,0.0,3.5,0.0,1.5,1.4,0.0,5.0,1.0,7.5,28.5,6.0,8.5,0.0,6.0,6.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10555555555555556,0.18425925925925926,0.2074074074074074,4.0,17.0,0.0,2.0,1.0,,#1WL-C,2.0,13.0,1.3,3.0,0.0,0.0,0.0,6.7,4.75,0.0,4.75,5.0,0.0,15.7,29.3,5.0,2.0,0.0,1.25,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19907407407407407,0.34444444444444444,0.3388888888888889,4,51
|
||||||
7543.0,Homer Bailey,2018 Season,Replacement,R,0.0,4.6,2.0,0.0,0.0,0.0,5.7,5.6,0.0,5.5,5.0,0.0,8.25,17.75,4.0,2.7,6.0,6.4,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.23055555555555557,0.30694444444444446,0.4388888888888889,3.0,4.0,1.0,5.0,1.0,,#1WR-C,1.0,13.0,1.9,2.0,0.0,0.0,0.0,5.7,6.8,0.0,2.75,5.0,0.0,7.0,19.0,5.0,2.4,6.0,7.2,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1912037037037037,0.25601851851851853,0.324537037037037,4,0
|
7543.0,Homer Bailey,2018 Season,Replacement,R,0.0,4.6,2.0,0.0,0.0,0.0,5.7,5.6,0.0,5.5,5.0,0.0,8.25,17.75,4.0,2.7,6.0,6.4,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.23055555555555557,0.30694444444444446,0.4388888888888889,3.0,4.0,1.0,5.0,1.0,,#1WR-C,1.0,13.0,1.9,2.0,0.0,0.0,0.0,5.7,6.8,0.0,2.75,5.0,0.0,7.0,19.0,5.0,2.4,6.0,7.2,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1912037037037037,0.25601851851851853,0.324537037037037,4,0
|
||||||
7544.0,Justin Verlander,2018 Season,Hall of Fame,R,0.0,1.3,2.0,0.0,0.0,3.75,0.0,0.0,1.6,0.0,5.0,1.0,6.3,35.7,5.0,1.95,4.0,9.0,2.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.09398148148148149,0.16157407407407406,0.1925925925925926,3.0,5.0,-3.0,6.0,1.0,,#1WR-C,1.0,13.0,1.5,2.0,0.0,0.0,0.0,3.5,3.5,0.0,3.5,5.0,0.0,4.5,33.5,4.0,4.0,7.0,5.5,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14351851851851852,0.18518518518518517,0.24537037037037038,1,15
|
7544.0,Justin Verlander,2018 Season,Hall of Fame,R,0.0,1.3,2.0,0.0,0.0,3.75,0.0,0.0,1.6,0.0,5.0,1.0,6.3,35.7,5.0,1.95,4.0,9.0,2.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.09398148148148149,0.16157407407407406,0.1925925925925926,3.0,5.0,-3.0,6.0,1.0,,#1WR-C,1.0,13.0,1.5,2.0,0.0,0.0,0.0,3.5,3.5,0.0,3.5,5.0,0.0,4.5,33.5,4.0,4.0,7.0,5.5,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14351851851851852,0.18518518518518517,0.24537037037037038,1,15
|
||||||
7545.0,Tanner Roark,2018 Season,Starter,R,0.0,1.75,2.0,0.0,0.0,0.0,4.25,5.1,0.0,5.1,5.0,1.0,9.2,18.8,3.0,4.0,5.0,5.9,8.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1824074074074074,0.27685185185185185,0.29814814814814816,0.0,6.0,-3.0,6.0,1.0,,#1WR-C,3.0,13.0,1.25,2.0,0.0,0.0,3.9,0.0,5.4,5.1,0.0,5.0,1.0,5.9,25.1,4.0,3.75,4.0,6.7,5.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17731481481481481,0.2412037037037037,0.2759259259259259,1,0
|
7545.0,Tanner Roark,2018 Season,Starter,R,0.0,1.75,2.0,0.0,0.0,0.0,4.25,5.1,0.0,5.1,5.0,1.0,9.2,18.8,3.0,4.0,5.0,5.9,8.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1824074074074074,0.27685185185185185,0.29814814814814816,0.0,6.0,-3.0,6.0,1.0,,#1WR-C,3.0,13.0,1.25,2.0,0.0,0.0,3.9,0.0,5.4,5.1,0.0,5.0,1.0,5.9,25.1,4.0,3.75,4.0,6.7,5.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17731481481481481,0.2412037037037037,0.2759259259259259,1,0
|
||||||
@ -4898,7 +4898,7 @@ player_id,player_name,cardset_name,rarity,hand,variant,homerun_vl,bp_homerun_vl,
|
|||||||
9286.0,Ryan Borucki,2018 Season,All-Star,L,0.0,1.65,1.0,0.0,0.0,0.0,2.6,5.4,0.0,5.1,5.0,1.0,5.1,27.9,4.0,5.75,4.0,9.6,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16435185185185186,0.22083333333333333,0.24814814814814815,0.0,4.0,5.0,6.0,1.0,,#1WL-C,1.0,13.0,0.0,2.0,0.0,0.0,0.0,5.6,5.1,0.0,5.0,5.0,0.0,10.1,22.9,5.0,1.4,4.0,6.9,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17777777777777778,0.2712962962962963,0.2574074074074074,5,21
|
9286.0,Ryan Borucki,2018 Season,All-Star,L,0.0,1.65,1.0,0.0,0.0,0.0,2.6,5.4,0.0,5.1,5.0,1.0,5.1,27.9,4.0,5.75,4.0,9.6,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16435185185185186,0.22083333333333333,0.24814814814814815,0.0,4.0,5.0,6.0,1.0,,#1WL-C,1.0,13.0,0.0,2.0,0.0,0.0,0.0,5.6,5.1,0.0,5.0,5.0,0.0,10.1,22.9,5.0,1.4,4.0,6.9,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17777777777777778,0.2712962962962963,0.2574074074074074,5,21
|
||||||
9287.0,Austin Gomber,2018 Season,Reserve,L,0.0,0.0,1.0,0.0,0.0,8.0,0.0,2.8,8.8,0.0,5.0,2.0,5.6,24.4,6.0,4.0,0.0,6.2,5.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20925925925925926,0.2796296296296296,0.2972222222222222,4.0,8.0,-5.0,3.0,2.0,,#1WL-C,2.0,13.0,1.7,2.0,0.0,0.0,0.0,4.5,5.0,0.0,5.6,5.0,0.0,13.3,23.7,6.0,1.8,4.0,4.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18796296296296297,0.3111111111111111,0.30462962962962964,2,0
|
9287.0,Austin Gomber,2018 Season,Reserve,L,0.0,0.0,1.0,0.0,0.0,8.0,0.0,2.8,8.8,0.0,5.0,2.0,5.6,24.4,6.0,4.0,0.0,6.2,5.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20925925925925926,0.2796296296296296,0.2972222222222222,4.0,8.0,-5.0,3.0,2.0,,#1WL-C,2.0,13.0,1.7,2.0,0.0,0.0,0.0,4.5,5.0,0.0,5.6,5.0,0.0,13.3,23.7,6.0,1.8,4.0,4.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18796296296296297,0.3111111111111111,0.30462962962962964,2,0
|
||||||
9288.0,Jefry Rodriguez,2018 Season,Reserve,R,0.0,2.0,3.0,0.0,0.0,0.0,6.0,3.4,0.0,3.3,5.0,0.0,21.8,13.2,5.0,2.0,5.0,6.6,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17314814814814813,0.375,0.32592592592592595,0.0,8.0,-1.0,4.0,3.0,,#1WR-C,1.0,13.0,1.25,2.0,0.0,0.0,0.0,3.75,2.1,0.0,1.8,5.0,1.0,14.25,27.75,4.0,0.0,6.0,3.9,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11481481481481481,0.25601851851851853,0.21203703703703702,3,0
|
9288.0,Jefry Rodriguez,2018 Season,Reserve,R,0.0,2.0,3.0,0.0,0.0,0.0,6.0,3.4,0.0,3.3,5.0,0.0,21.8,13.2,5.0,2.0,5.0,6.6,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17314814814814813,0.375,0.32592592592592595,0.0,8.0,-1.0,4.0,3.0,,#1WR-C,1.0,13.0,1.25,2.0,0.0,0.0,0.0,3.75,2.1,0.0,1.8,5.0,1.0,14.25,27.75,4.0,0.0,6.0,3.9,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11481481481481481,0.25601851851851853,0.21203703703703702,3,0
|
||||||
9289.0,Pablo Lopez,2018 Season,Starter,R,0.0,0.0,1.0,0.0,0.0,0.0,7.6,3.75,0.0,3.75,5.0,0.0,7.95,27.05,0.0,5.5,1.25,2.0,14.15,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1675925925925926,0.2412037037037037,0.2518518518518518,0.0,7.0,3.0,6.0,1.0,,#1WR-C,1.0,13.0,3.4,1.0,0.0,0.0,4.75,0.0,4.2,4.2,0.0,5.0,3.0,8.2,23.8,0.0,4.85,1.1,4.2,11.3,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18101851851851852,0.2847222222222222,0.3333333333333333,3,26
|
9289.0,Pablo Lopez,2018 Season,Starter,R,0.0,0.0,1.0,0.0,0.0,0.0,7.6,3.75,0.0,3.75,5.0,0.0,7.8,24.2,4.0,5.4,4.0,5.25,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1675925925925926,0.23981481481481481,0.2518518518518518,0.0,7.0,3.0,6.0,1.0,,#1WR-C,1.0,13.0,3.4,1.0,0.0,0.0,4.75,0.0,4.15,4.25,0.0,5.0,3.0,8.2,22.8,0.0,4.6,4.0,8.1,5.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18101851851851852,0.2847222222222222,0.3333333333333333,3,26
|
||||||
9290.0,Austin Davis,2018 Season,Replacement,L,0.0,4.0,2.0,1.5,0.0,0.0,5.7,3.5,0.0,5.0,5.0,1.0,10.4,32.6,0.0,3.3,0.0,0.0,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.21481481481481482,0.32037037037037036,0.43425925925925923,8.0,20.0,9.0,1.0,1.0,,#1WL-C,1.0,13.0,0.0,1.0,0.0,0.0,9.4,0.0,2.7,2.75,0.0,5.0,1.0,7.8,23.2,4.0,5.0,4.0,5.9,7.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16527777777777777,0.24675925925925926,0.2662037037037037,4,51
|
9290.0,Austin Davis,2018 Season,Replacement,L,0.0,4.0,2.0,1.5,0.0,0.0,5.7,3.5,0.0,5.0,5.0,1.0,10.4,32.6,0.0,3.3,0.0,0.0,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.21481481481481482,0.32037037037037036,0.43425925925925923,8.0,20.0,9.0,1.0,1.0,,#1WL-C,1.0,13.0,0.0,1.0,0.0,0.0,9.4,0.0,2.7,2.75,0.0,5.0,1.0,7.8,23.2,4.0,5.0,4.0,5.9,7.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16527777777777777,0.24675925925925926,0.2662037037037037,4,51
|
||||||
9291.0,Heath Fillmyer,2018 Season,Starter,R,0.0,0.0,1.0,0.0,0.0,0.0,4.0,4.8,0.0,4.5,5.0,0.0,13.25,21.75,4.0,0.0,10.0,10.2,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15092592592592594,0.27361111111111114,0.20185185185185187,4.0,7.0,0.0,5.0,4.0,,#1WR-C,1.0,13.0,0.0,2.0,0.0,0.0,0.0,5.0,6.7,0.0,6.7,5.0,0.0,7.1,21.9,4.0,0.0,5.0,7.3,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20277777777777778,0.26851851851851855,0.27685185185185185,4,0
|
9291.0,Heath Fillmyer,2018 Season,Starter,R,0.0,0.0,1.0,0.0,0.0,0.0,4.0,4.8,0.0,4.5,5.0,0.0,13.25,21.75,4.0,0.0,10.0,10.2,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15092592592592594,0.27361111111111114,0.20185185185185187,4.0,7.0,0.0,5.0,4.0,,#1WR-C,1.0,13.0,0.0,2.0,0.0,0.0,0.0,5.0,6.7,0.0,6.7,5.0,0.0,7.1,21.9,4.0,0.0,5.0,7.3,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20277777777777778,0.26851851851851855,0.27685185185185185,4,0
|
||||||
9292.0,Diego Castillo,2018 Season,MVP,R,0.0,1.5,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9,5.0,0.0,12.75,34.25,4.0,3.5,10.0,4.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.06388888888888888,0.18194444444444444,0.13333333333333333,5.0,18.0,-5.0,1.0,1.0,,#1WR-C,2.0,13.0,0.0,1.0,0.0,0.0,5.1,0.0,2.5,2.6,0.0,5.0,1.0,6.5,35.5,4.0,4.0,4.0,6.4,1.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12222222222222222,0.19166666666666668,0.18333333333333332,4,50
|
9292.0,Diego Castillo,2018 Season,MVP,R,0.0,1.5,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9,5.0,0.0,12.75,34.25,4.0,3.5,10.0,4.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.06388888888888888,0.18194444444444444,0.13333333333333333,5.0,18.0,-5.0,1.0,1.0,,#1WR-C,2.0,13.0,0.0,1.0,0.0,0.0,5.1,0.0,2.5,2.6,0.0,5.0,1.0,6.5,35.5,4.0,4.0,4.0,6.4,1.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12222222222222222,0.19166666666666668,0.18333333333333332,4,50
|
||||||
@ -5003,14 +5003,14 @@ player_id,player_name,cardset_name,rarity,hand,variant,homerun_vl,bp_homerun_vl,
|
|||||||
9488.0,Corey Knebel,2018 Promos,Hall of Fame,R,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,4.0,9.4,45.6,4.0,0.0,4.0,7.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.023148148148148147,0.14722222222222223,0.023148148148148147,0.0,0.0,-2.0,1.0,1.0,2.0,#1WR-C,3.0,14.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,2.0,0.0,3.0,3.5,46.5,8.0,0.0,4.0,9.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.046296296296296294,0.10648148148148148,0.07407407407407407,4,0
|
9488.0,Corey Knebel,2018 Promos,Hall of Fame,R,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,4.0,9.4,45.6,4.0,0.0,4.0,7.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.023148148148148147,0.14722222222222223,0.023148148148148147,0.0,0.0,-2.0,1.0,1.0,2.0,#1WR-C,3.0,14.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,2.0,0.0,3.0,3.5,46.5,8.0,0.0,4.0,9.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.046296296296296294,0.10648148148148148,0.07407407407407407,4,0
|
||||||
9489.0,Juan Minaya,2018 Promos,All-Star,R,0.0,0.0,0.0,0.0,0.0,9.8,0.0,0.0,0.0,0.0,5.0,0.0,11.9,35.1,4.0,1.2,8.0,4.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11388888888888889,0.22407407407407406,0.20462962962962963,0.0,20.0,6.0,1.0,1.0,0.0,#1WR-C,1.0,14.0,0.0,0.0,0.0,0.0,6.0,0.0,3.4,3.3,0.0,5.0,0.0,10.4,33.6,4.0,0.0,5.0,5.6,2.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14074074074074075,0.23703703703703705,0.1962962962962963,4,51
|
9489.0,Juan Minaya,2018 Promos,All-Star,R,0.0,0.0,0.0,0.0,0.0,9.8,0.0,0.0,0.0,0.0,5.0,0.0,11.9,35.1,4.0,1.2,8.0,4.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11388888888888889,0.22407407407407406,0.20462962962962963,0.0,20.0,6.0,1.0,1.0,0.0,#1WR-C,1.0,14.0,0.0,0.0,0.0,0.0,6.0,0.0,3.4,3.3,0.0,5.0,0.0,10.4,33.6,4.0,0.0,5.0,5.6,2.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14074074074074075,0.23703703703703705,0.1962962962962963,4,51
|
||||||
9380.0,Amir Khan,Backyard Baseball,MVP,R,0.0,1.0,1.0,0.0,0.0,0.0,0.0,3.5,0.0,0.0,5.0,2.0,16.6,36.4,4.0,0.0,4.0,4.0,1.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.06944444444444445,0.24166666666666667,0.1111111111111111,0.0,12.0,3.0,1.0,1.0,6.0,#1WR-C,3.0,16.0,0.0,1.0,0.0,0.0,2.8,0.0,0.0,1.1,0.0,5.0,1.0,10.4,39.6,5.0,1.2,4.0,5.0,2.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.06388888888888888,0.16944444444444445,0.1037037037037037,4,30
|
9380.0,Amir Khan,Backyard Baseball,MVP,R,0.0,1.0,1.0,0.0,0.0,0.0,0.0,3.5,0.0,0.0,5.0,2.0,16.6,36.4,4.0,0.0,4.0,4.0,1.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.06944444444444445,0.24166666666666667,0.1111111111111111,0.0,12.0,3.0,1.0,1.0,6.0,#1WR-C,3.0,16.0,0.0,1.0,0.0,0.0,2.8,0.0,0.0,1.1,0.0,5.0,1.0,10.4,39.6,5.0,1.2,4.0,5.0,2.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.06388888888888888,0.16944444444444445,0.1037037037037037,4,30
|
||||||
|
9391.0,Kenny Kawaguchi,Backyard Baseball,MVP,R,0.0,0.0,1.0,0.0,0.0,0.0,3.75,1.25,0.0,1.0,5.0,0.0,11.3,42.7,1.25,0.0,8.0,3.75,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.08333333333333333,0.18796296296296297,0.13194444444444445,3.0,3.0,5.0,7.0,1.0,0.0,#1WR-C,3.0,16.0,0.0,2.0,0.0,0.0,5.8,0.0,3.4,3.3,0.0,5.0,1.0,6.9,29.1,5.0,4.0,5.0,5.8,2.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14814814814814814,0.2212962962962963,0.22962962962962963,5,20
|
||||||
9381.0,Angela Delvecchio,Backyard Baseball,All-Star,R,0.0,0.0,1.0,0.0,0.0,0.0,6.3,4.8,0.0,4.75,5.0,0.0,8.6,32.4,4.0,2.7,4.0,5.2,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17453703703703705,0.25416666666666665,0.24675925925925926,0.0,4.0,-1.0,6.0,1.0,0.0,#1WR-C,1.0,16.0,0.0,2.0,0.0,0.0,5.1,0.0,3.5,3.5,0.0,5.0,0.0,5.75,31.25,0.0,4.0,7.0,10.4,1.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14444444444444443,0.19768518518518519,0.21944444444444444,5,51
|
9381.0,Angela Delvecchio,Backyard Baseball,All-Star,R,0.0,0.0,1.0,0.0,0.0,0.0,6.3,4.8,0.0,4.75,5.0,0.0,8.6,32.4,4.0,2.7,4.0,5.2,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17453703703703705,0.25416666666666665,0.24675925925925926,0.0,4.0,-1.0,6.0,1.0,0.0,#1WR-C,1.0,16.0,0.0,2.0,0.0,0.0,5.1,0.0,3.5,3.5,0.0,5.0,0.0,5.75,31.25,0.0,4.0,7.0,10.4,1.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14444444444444443,0.19768518518518519,0.21944444444444444,5,51
|
||||||
|
9388.0,Gretchen Hasselhoff,Backyard Baseball,All-Star,L,0.0,1.25,2.0,0.0,0.0,0.0,4.75,2.4,0.0,2.4,5.0,2.0,4.25,30.75,7.25,0.0,5.75,9.6,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13240740740740742,0.19027777777777777,0.2388888888888889,0.0,15.0,-3.0,5.0,4.0,0.0,#1WR-C,1.0,16.0,1.6,2.0,0.0,0.0,0.0,4.5,3.25,0.0,3.3,5.0,1.0,9.3,32.7,4.5,2.4,1.0,5.75,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14953703703703702,0.2449074074074074,0.26342592592592595,3,24
|
||||||
9384.0,Billy Jean Blackwood,Backyard Baseball,Starter,R,0.0,3.8,1.0,0.0,0.0,0.0,0.0,5.4,0.0,5.1,5.0,2.0,10.7,30.3,0.0,4.2,0.0,1.6,9.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16018518518518518,0.2777777777777778,0.2796296296296296,3.0,5.0,1.0,1.0,2.0,1.0,#1WR-C,2.0,16.0,1.6,2.0,0.0,0.0,2.8,0.0,5.7,5.6,0.0,5.0,0.0,5.9,35.1,0.0,2.4,9.0,1.5,2.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17777777777777778,0.2324074074074074,0.2759259259259259,3,20
|
9384.0,Billy Jean Blackwood,Backyard Baseball,Starter,R,0.0,3.8,1.0,0.0,0.0,0.0,0.0,5.4,0.0,5.1,5.0,2.0,10.7,30.3,0.0,4.2,0.0,1.6,9.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16018518518518518,0.2777777777777778,0.2796296296296296,3.0,5.0,1.0,1.0,2.0,1.0,#1WR-C,2.0,16.0,1.6,2.0,0.0,0.0,2.8,0.0,5.7,5.6,0.0,5.0,0.0,5.9,35.1,0.0,2.4,9.0,1.5,2.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17777777777777778,0.2324074074074074,0.2759259259259259,3,20
|
||||||
9387.0,Ernie Steele,Backyard Baseball,Starter,R,0.0,1.5,2.0,0.0,0.0,0.0,5.4,4.2,0.0,4.2,5.0,0.0,9.5,17.5,4.0,5.1,9.0,9.8,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17407407407407408,0.262037037037037,0.2935185185185185,0.0,8.0,0.0,6.0,1.0,0.0,#1WR-C,2.0,16.0,1.5,3.0,0.0,0.0,0.0,4.5,5.0,0.0,5.1,5.0,0.0,7.5,30.5,3.5,0.0,3.5,4.0,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18611111111111112,0.25555555555555554,0.3111111111111111,1,0
|
9387.0,Ernie Steele,Backyard Baseball,Starter,R,0.0,1.5,2.0,0.0,0.0,0.0,5.4,4.2,0.0,4.2,5.0,0.0,9.5,17.5,4.0,5.1,9.0,9.8,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17407407407407408,0.262037037037037,0.2935185185185185,0.0,8.0,0.0,6.0,1.0,0.0,#1WR-C,2.0,16.0,1.5,3.0,0.0,0.0,0.0,4.5,5.0,0.0,5.1,5.0,0.0,7.5,30.5,3.5,0.0,3.5,4.0,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18611111111111112,0.25555555555555554,0.3111111111111111,1,0
|
||||||
9388.0,Gretchen Hasselhoff,Backyard Baseball,All-Star,L,0.0,1.25,2.0,0.0,0.0,0.0,4.75,2.4,0.0,2.4,5.0,2.0,4.25,30.75,7.25,0.0,5.75,9.6,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13240740740740742,0.19027777777777777,0.2388888888888889,0.0,15.0,-3.0,5.0,4.0,0.0,#1WR-C,1.0,16.0,1.6,2.0,0.0,0.0,0.0,4.5,3.25,0.0,3.3,5.0,1.0,9.3,32.7,4.5,2.4,1.0,5.75,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14953703703703702,0.2449074074074074,0.26342592592592595,3,24
|
|
||||||
9391.0,Kenny Kawaguchi,Backyard Baseball,MVP,R,0.0,0.0,1.0,0.0,0.0,0.0,3.75,1.25,0.0,1.0,5.0,0.0,11.3,42.7,1.25,0.0,8.0,3.75,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.08333333333333333,0.18796296296296297,0.13194444444444445,3.0,3.0,5.0,7.0,1.0,0.0,#1WR-C,3.0,16.0,0.0,2.0,0.0,0.0,5.8,0.0,3.4,3.3,0.0,5.0,1.0,6.9,29.1,5.0,4.0,5.0,5.8,2.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14814814814814814,0.2212962962962963,0.22962962962962963,5,20
|
|
||||||
9394.0,Lisa Crocket,Backyard Baseball,All-Star,R,0.0,0.0,1.0,0.0,0.0,0.0,5.1,2.0,0.0,2.25,5.0,0.0,14.1,27.9,0.0,0.9,5.0,13.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11435185185185186,0.2449074074074074,0.17546296296296296,0.0,7.0,2.0,5.0,4.0,0.0,#1WR-C,3.0,16.0,1.65,1.0,0.0,0.0,0.0,6.4,5.4,0.0,5.6,5.0,1.0,3.75,29.25,1.6,1.35,5.0,9.6,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20416666666666666,0.24814814814814815,0.32314814814814813,4,30
|
9394.0,Lisa Crocket,Backyard Baseball,All-Star,R,0.0,0.0,1.0,0.0,0.0,0.0,5.1,2.0,0.0,2.25,5.0,0.0,14.1,27.9,0.0,0.9,5.0,13.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11435185185185186,0.2449074074074074,0.17546296296296296,0.0,7.0,2.0,5.0,4.0,0.0,#1WR-C,3.0,16.0,1.65,1.0,0.0,0.0,0.0,6.4,5.4,0.0,5.6,5.0,1.0,3.75,29.25,1.6,1.35,5.0,9.6,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20416666666666666,0.24814814814814815,0.32314814814814813,4,30
|
||||||
9395.0,Luanne Lui,Backyard Baseball,Starter,R,0.0,0.0,1.0,0.0,0.0,0.0,5.8,2.75,0.0,2.7,5.0,0.0,5.8,29.2,14.0,1.2,2.0,6.25,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13194444444444445,0.18564814814814815,0.19953703703703704,0.0,7.0,2.0,1.0,2.0,1.0,#1WR-C,3.0,16.0,4.1,2.0,0.0,0.0,4.5,0.0,2.1,0.0,0.0,5.0,0.0,12.3,25.7,9.0,3.9,8.0,2.4,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13148148148148148,0.24537037037037038,0.3148148148148148,2,10
|
|
||||||
9404.0,Sally Dobbs,Backyard Baseball,Starter,R,0.0,3.4,2.0,0.0,0.0,0.0,4.8,4.2,0.0,4.0,5.0,1.0,5.4,23.6,0.0,1.8,8.0,10.8,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18425925925925926,0.24351851851851852,0.3509259259259259,8.0,2.0,-3.0,1.0,1.0,4.0,#1WR-C,2.0,16.0,0.0,1.0,0.0,0.0,2.1,0.0,3.9,3.5,0.0,5.0,0.0,8.1,30.9,8.0,0.0,4.0,6.0,6.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11574074074074074,0.19074074074074074,0.14907407407407408,3,10
|
9404.0,Sally Dobbs,Backyard Baseball,Starter,R,0.0,3.4,2.0,0.0,0.0,0.0,4.8,4.2,0.0,4.0,5.0,1.0,5.4,23.6,0.0,1.8,8.0,10.8,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18425925925925926,0.24351851851851852,0.3509259259259259,8.0,2.0,-3.0,1.0,1.0,4.0,#1WR-C,2.0,16.0,0.0,1.0,0.0,0.0,2.1,0.0,3.9,3.5,0.0,5.0,0.0,8.1,30.9,8.0,0.0,4.0,6.0,6.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11574074074074074,0.19074074074074074,0.14907407407407408,3,10
|
||||||
|
9395.0,Luanne Lui,Backyard Baseball,Starter,R,0.0,0.0,1.0,0.0,0.0,0.0,5.8,2.75,0.0,2.7,5.0,0.0,5.8,29.2,14.0,1.2,2.0,6.25,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13194444444444445,0.18564814814814815,0.19953703703703704,0.0,7.0,2.0,1.0,2.0,1.0,#1WR-C,3.0,16.0,4.1,2.0,0.0,0.0,4.5,0.0,2.1,0.0,0.0,5.0,0.0,12.3,25.7,9.0,3.9,8.0,2.4,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13148148148148148,0.24537037037037038,0.3148148148148148,2,10
|
||||||
9593.0,Martin Perez,2024 Season,Starter,L,0.0,1.1,2.0,0.0,0.0,0.0,0.9,8.35,0.0,7.7,5.0,1.0,7.4,22.6,4.0,5.0,0.0,4.65,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19953703703703704,0.2773148148148148,0.2662037037037037,2.0,3.0,-3.0,5.0,1.0,,#1WL-C,1.0,17.0,1.7,2.0,0.0,0.0,0.0,5.7,5.4,0.0,5.4,5.0,0.0,10.25,22.75,6.0,0.6,4.0,4.6,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20092592592592592,0.29583333333333334,0.3287037037037037,1,0
|
9593.0,Martin Perez,2024 Season,Starter,L,0.0,1.1,2.0,0.0,0.0,0.0,0.9,8.35,0.0,7.7,5.0,1.0,7.4,22.6,4.0,5.0,0.0,4.65,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19953703703703704,0.2773148148148148,0.2662037037037037,2.0,3.0,-3.0,5.0,1.0,,#1WL-C,1.0,17.0,1.7,2.0,0.0,0.0,0.0,5.7,5.4,0.0,5.4,5.0,0.0,10.25,22.75,6.0,0.6,4.0,4.6,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20092592592592592,0.29583333333333334,0.3287037037037037,1,0
|
||||||
9594.0,Nathan Eovaldi,2024 Season,MVP,R,0.0,1.0,2.0,0.0,0.0,0.0,5.75,3.75,0.0,3.75,5.0,0.0,7.0,28.0,4.0,2.25,5.0,5.25,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16435185185185186,0.22916666666666666,0.27314814814814814,0.0,4.0,9.0,6.0,1.0,,#1WR-C,1.0,17.0,1.3,2.0,0.0,0.0,0.0,1.95,3.6,0.0,3.6,5.0,1.0,7.0,37.0,0.0,3.75,5.0,5.4,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12916666666666668,0.20324074074074075,0.2111111111111111,4,7
|
9594.0,Nathan Eovaldi,2024 Season,MVP,R,0.0,1.0,2.0,0.0,0.0,0.0,5.75,3.75,0.0,3.75,5.0,0.0,7.0,28.0,4.0,2.25,5.0,5.25,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16435185185185186,0.22916666666666666,0.27314814814814814,0.0,4.0,9.0,6.0,1.0,,#1WR-C,1.0,17.0,1.3,2.0,0.0,0.0,0.0,1.95,3.6,0.0,3.6,5.0,1.0,7.0,37.0,0.0,3.75,5.0,5.4,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12916666666666668,0.20324074074074075,0.2111111111111111,4,7
|
||||||
9595.0,Patrick Corbin,2024 Season,Reserve,L,0.0,0.0,1.0,0.0,0.0,0.0,6.25,3.3,0.0,3.3,5.0,0.0,11.8,27.2,4.0,3.75,4.0,6.7,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14675925925925926,0.25601851851851853,0.21851851851851853,0.0,3.0,-1.0,5.0,1.0,,#1WL-C,3.0,17.0,1.75,3.0,0.0,0.0,0.0,5.35,6.75,0.0,6.7,5.0,0.0,7.0,21.0,4.0,4.9,0.0,5.25,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2273148148148148,0.29212962962962963,0.36712962962962964,2,0
|
9595.0,Patrick Corbin,2024 Season,Reserve,L,0.0,0.0,1.0,0.0,0.0,0.0,6.25,3.3,0.0,3.3,5.0,0.0,11.8,27.2,4.0,3.75,4.0,6.7,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14675925925925926,0.25601851851851853,0.21851851851851853,0.0,3.0,-1.0,5.0,1.0,,#1WL-C,3.0,17.0,1.75,3.0,0.0,0.0,0.0,5.35,6.75,0.0,6.7,5.0,0.0,7.0,21.0,4.0,4.9,0.0,5.25,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2273148148148148,0.29212962962962963,0.36712962962962964,2,0
|
||||||
@ -5910,11 +5910,11 @@ player_id,player_name,cardset_name,rarity,hand,variant,homerun_vl,bp_homerun_vl,
|
|||||||
11142.0,John Wasdin,1998 Season,Starter,R,0.0,3.0,2.0,0.0,0.0,5.1,0.0,5.1,5.1,0.0,5.0,0.0,0.0,16.95,0.0,11.7,4.25,5.1,15.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20185185185185184,0.20185185185185184,0.36018518518518516,0.0,2.0,5.0,2.0,1.0,,#1WR-C,3.0,20.0,0.1,2.0,0.0,0.0,3.9,0.0,3.2,3.2,0.0,5.0,0.0,0.0,25.95,0.0,6.550000000000001,1.75,13.4,13.95,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12870370370370368,0.12870370370370368,0.19537037037037036,3,14
|
11142.0,John Wasdin,1998 Season,Starter,R,0.0,3.0,2.0,0.0,0.0,5.1,0.0,5.1,5.1,0.0,5.0,0.0,0.0,16.95,0.0,11.7,4.25,5.1,15.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20185185185185184,0.20185185185185184,0.36018518518518516,0.0,2.0,5.0,2.0,1.0,,#1WR-C,3.0,20.0,0.1,2.0,0.0,0.0,3.9,0.0,3.2,3.2,0.0,5.0,0.0,0.0,25.95,0.0,6.550000000000001,1.75,13.4,13.95,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12870370370370368,0.12870370370370368,0.19537037037037036,3,14
|
||||||
11143.0,Doug Johns,1998 Season,All-Star,L,0.0,0.0,2.0,0.0,0.0,1.65,0.0,3.75,3.75,0.0,5.0,0.0,0.0,20.0,6.0,0.0,4.0,31.6,1.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11712962962962963,0.11712962962962963,0.16018518518518518,0.0,7.0,-3.0,3.0,2.0,0.0,#1WL-C,2.0,20.0,0.0,2.0,0.0,0.0,6.1,0.0,6.3,6.3,0.0,5.0,0.0,0.0,16.0,5.0,4.0,5.0,14.6,8.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20555555555555555,0.20555555555555555,0.2898148148148148,1,10
|
11143.0,Doug Johns,1998 Season,All-Star,L,0.0,0.0,2.0,0.0,0.0,1.65,0.0,3.75,3.75,0.0,5.0,0.0,0.0,20.0,6.0,0.0,4.0,31.6,1.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11712962962962963,0.11712962962962963,0.16018518518518518,0.0,7.0,-3.0,3.0,2.0,0.0,#1WL-C,2.0,20.0,0.0,2.0,0.0,0.0,6.1,0.0,6.3,6.3,0.0,5.0,0.0,0.0,16.0,5.0,4.0,5.0,14.6,8.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20555555555555555,0.20555555555555555,0.2898148148148148,1,10
|
||||||
11144.0,Keith Foulke,1998 Season,Hall of Fame,R,0.0,0.0,1.0,0.0,0.0,4.55,0.0,3.45,3.6,0.0,5.0,0.0,0.0,39.0,4.0,0.0,4.0,9.0,5.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13518518518518519,0.13518518518518519,0.1912037037037037,4.0,9.0,0.0,1.0,1.0,1.0,#1WR-C,1.0,20.0,0.0,0.0,0.0,0.0,2.85,0.0,2.25,2.1,0.0,0.0,0.0,0.0,32.0,4.0,8.0,5.0,18.9,3.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.06666666666666667,0.06666666666666667,0.09305555555555556,4,51
|
11144.0,Keith Foulke,1998 Season,Hall of Fame,R,0.0,0.0,1.0,0.0,0.0,4.55,0.0,3.45,3.6,0.0,5.0,0.0,0.0,39.0,4.0,0.0,4.0,9.0,5.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13518518518518519,0.13518518518518519,0.1912037037037037,4.0,9.0,0.0,1.0,1.0,1.0,#1WR-C,1.0,20.0,0.0,0.0,0.0,0.0,2.85,0.0,2.25,2.1,0.0,0.0,0.0,0.0,32.0,4.0,8.0,5.0,18.9,3.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.06666666666666667,0.06666666666666667,0.09305555555555556,4,51
|
||||||
11145.0,Frank Castillo,1998 Season,Starter,R,0.0,0.8,1.0,0.0,0.0,4.25,0.0,3.75,3.75,0.0,5.0,0.0,0.0,26.95,0.0,10.8,3.2,10.1,9.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1439814814814815,0.1439814814814815,0.21944444444444444,0.0,0.0,-2.0,4.0,3.0,0.0,#1WR-C,2.0,20.0,2.0999999999999996,2.0,0.0,0.0,4.2,0.0,6.3,6.35,0.0,5.0,0.0,0.0,22.95,0.0,4.6,1.2,8.4,15.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20787037037037037,0.20787037037037037,0.3328703703703703,3,0
|
11145.0,Frank Castillo,1998 Season,Starter,R,0.0,0.0,1.0,0.0,0.0,5.05,0.0,3.75,3.75,0.0,5.0,0.0,0.0,32.0,4.0,10.0,5.0,8.2,1.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1439814814814815,0.1439814814814815,0.20462962962962963,0.0,0.0,-2.0,4.0,3.0,0.0,#1WR-C,2.0,20.0,2.0,2.0,0.0,0.0,4.25,0.0,6.25,6.4,0.0,5.0,0.0,0.0,25.0,4.0,4.0,5.0,7.5,7.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2074074074074074,0.2074074074074074,0.3300925925925926,3,0
|
||||||
11146.0,AJ Sager,1998 Season,Starter,R,0.0,0.0,2.0,0.0,0.0,3.4,0.0,5.45,5.1,0.0,5.0,0.0,0.0,14.0,4.0,0.0,7.0,21.15,11.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16157407407407406,0.16157407407407406,0.22083333333333333,0.0,14.0,1.0,2.0,1.0,0.0,#1WR-C,1.0,20.0,0.0,1.0,0.0,0.0,4.6,0.0,5.4,5.4,0.0,5.0,0.0,0.0,19.0,5.0,5.0,0.0,18.0,10.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17037037037037037,0.17037037037037037,0.22685185185185186,2,0
|
11146.0,AJ Sager,1998 Season,Starter,R,0.0,0.0,2.0,0.0,0.0,3.4,0.0,5.45,5.1,0.0,5.0,0.0,0.0,14.0,4.0,0.0,7.0,21.15,11.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16157407407407406,0.16157407407407406,0.22083333333333333,0.0,14.0,1.0,2.0,1.0,0.0,#1WR-C,1.0,20.0,0.0,1.0,0.0,0.0,4.6,0.0,5.4,5.4,0.0,5.0,0.0,0.0,19.0,5.0,5.0,0.0,18.0,10.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17037037037037037,0.17037037037037037,0.22685185185185186,2,0
|
||||||
11147.0,Billy Taylor,1998 Season,All-Star,R,0.0,0.0,2.0,0.0,0.0,5.0,0.0,3.75,3.75,0.0,5.0,0.0,0.0,20.95,0.0,9.7,2.4,12.85,13.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14814814814814814,0.14814814814814814,0.2222222222222222,4.0,0.0,9.0,1.0,1.0,5.0,#1WR-C,2.0,20.0,1.2,0.0,0.0,0.0,1.2,0.0,4.75,4.5,0.0,5.0,0.0,0.0,38.95,0.0,5.1,0.0,11.75,6.55,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13101851851851853,0.13101851851851853,0.17546296296296296,4,0
|
11147.0,Billy Taylor,1998 Season,All-Star,R,0.0,0.0,2.0,0.0,0.0,5.0,0.0,3.75,3.75,0.0,5.0,0.0,0.0,20.95,0.0,9.7,2.4,12.85,13.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14814814814814814,0.14814814814814814,0.2222222222222222,4.0,0.0,9.0,1.0,1.0,5.0,#1WR-C,2.0,20.0,1.2,0.0,0.0,0.0,1.2,0.0,4.75,4.5,0.0,5.0,0.0,0.0,38.95,0.0,5.1,0.0,11.75,6.55,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13101851851851853,0.13101851851851853,0.17546296296296296,4,0
|
||||||
11148.0,Blake Stein,1998 Season,MVP,R,0.0,0.6,3.0,0.0,0.0,4.5,0.0,1.75,1.75,0.0,5.0,0.0,0.0,24.95,0.0,16.45,4.5,5.7,10.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11666666666666667,0.11666666666666667,0.21666666666666665,0.0,20.0,-1.0,5.0,4.0,,#1WR-C,1.0,20.0,1.2,2.0,0.0,0.0,4.2,0.0,2.8,2.75,0.0,5.0,0.0,0.0,29.95,0.0,9.7,2.5,7.5,11.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1337962962962963,0.1337962962962963,0.23379629629629634,4,18
|
11148.0,Blake Stein,1998 Season,MVP,R,0.0,0.6,3.0,0.0,0.0,4.5,0.0,1.75,1.75,0.0,5.0,0.0,0.0,24.95,0.0,16.45,4.5,5.7,10.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11666666666666667,0.11666666666666667,0.21666666666666665,0.0,20.0,-1.0,5.0,4.0,,#1WR-C,1.0,20.0,1.2,2.0,0.0,0.0,4.2,0.0,2.8,2.75,0.0,5.0,0.0,0.0,29.95,0.0,9.7,2.5,7.5,11.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1337962962962963,0.1337962962962963,0.23379629629629634,4,18
|
||||||
11149.0,Tim Crabtree,1998 Season,MVP,R,0.0,0.95,1.0,0.0,0.0,3.2,0.0,1.4,1.5,0.0,5.0,0.0,0.0,26.95,0.0,9.4,3.4,13.7,12.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.09305555555555556,0.09305555555555556,0.16296296296296298,0.0,14.0,-2.0,1.0,1.0,,#1WR-C,1.0,20.0,0.0,0.0,0.0,0.0,2.65,0.0,5.1,5.1,0.0,5.0,0.0,0.0,27.95,0.0,6.2,0.0,17.6,9.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14212962962962963,0.14212962962962963,0.16666666666666666,4,23
|
11149.0,Tim Crabtree,1998 Season,MVP,R,0.0,0.0,1.0,0.0,0.0,4.0,0.0,1.5,1.5,0.0,5.0,0.0,0.0,32.0,0.0,9.0,8.0,13.5,3.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.09259259259259259,0.09259259259259259,0.14351851851851852,0.0,14.0,-2.0,1.0,1.0,,#1WR-C,1.0,20.0,0.0,0.0,0.0,0.0,2.65,0.0,5.1,5.1,0.0,5.0,0.0,0.0,36.0,4.0,0.0,4.0,16.25,0.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14212962962962963,0.14212962962962963,0.16666666666666666,4,23
|
||||||
11150.0,Rich Garces,1998 Season,MVP,R,0.0,0.2,2.0,0.0,0.0,4.25,0.0,1.9,1.7,0.0,5.0,0.0,0.0,20.95,0.0,10.9,2.5,13.7,15.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10694444444444444,0.10694444444444444,0.17962962962962964,6.0,4.0,4.0,1.0,2.0,1.0,#1WR-C,3.0,20.0,0.55,2.0,0.0,0.0,3.2,0.0,2.5,2.5,0.0,5.0,0.0,0.0,34.95,0.0,7.25,0.0,9.8,11.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11342592592592593,0.11342592592592593,0.18611111111111112,4,0
|
11150.0,Rich Garces,1998 Season,MVP,R,0.0,0.2,2.0,0.0,0.0,4.25,0.0,1.9,1.7,0.0,5.0,0.0,0.0,20.95,0.0,10.9,2.5,13.7,15.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10694444444444444,0.10694444444444444,0.17962962962962964,6.0,4.0,4.0,1.0,2.0,1.0,#1WR-C,3.0,20.0,0.55,2.0,0.0,0.0,3.2,0.0,2.5,2.5,0.0,5.0,0.0,0.0,34.95,0.0,7.25,0.0,9.8,11.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11342592592592593,0.11342592592592593,0.18611111111111112,4,0
|
||||||
11151.0,Russ Springer,1998 Season,Hall of Fame,R,0.0,0.0,0.0,0.0,0.0,2.75,0.0,2.25,2.8,0.0,5.0,0.0,0.0,45.0,4.0,6.0,5.0,5.0,1.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.09537037037037037,0.09537037037037037,0.12083333333333333,0.0,19.0,1.0,1.0,1.0,,#1WR-C,3.0,20.0,0.0,2.0,0.0,0.0,0.0,0.0,2.9,2.2,0.0,5.0,0.0,0.0,42.0,4.0,5.0,4.0,5.1,6.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.07962962962962963,0.07962962962962963,0.10740740740740741,5,51
|
11151.0,Russ Springer,1998 Season,Hall of Fame,R,0.0,0.0,0.0,0.0,0.0,2.75,0.0,2.25,2.8,0.0,5.0,0.0,0.0,45.0,4.0,6.0,5.0,5.0,1.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.09537037037037037,0.09537037037037037,0.12083333333333333,0.0,19.0,1.0,1.0,1.0,,#1WR-C,3.0,20.0,0.0,2.0,0.0,0.0,0.0,0.0,2.9,2.2,0.0,5.0,0.0,0.0,42.0,4.0,5.0,4.0,5.1,6.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.07962962962962963,0.07962962962962963,0.10740740740740741,5,51
|
||||||
11152.0,Rob Stanifer,1998 Season,MVP,R,0.0,0.0,2.0,0.0,0.0,4.1,0.0,3.7,3.8,0.0,5.0,0.0,0.0,27.0,4.0,6.0,10.0,8.2,5.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1398148148148148,0.1398148148148148,0.20555555555555555,0.0,4.0,4.0,1.0,1.0,1.0,#1WR-C,1.0,20.0,0.0,1.0,0.0,0.0,2.8,0.0,1.2,2.4,0.0,5.0,0.0,0.0,31.0,4.0,5.0,5.0,16.0,5.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.08703703703703704,0.08703703703703704,0.12685185185185185,3,30
|
11152.0,Rob Stanifer,1998 Season,MVP,R,0.0,0.0,2.0,0.0,0.0,4.1,0.0,3.7,3.8,0.0,5.0,0.0,0.0,27.0,4.0,6.0,10.0,8.2,5.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1398148148148148,0.1398148148148148,0.20555555555555555,0.0,4.0,4.0,1.0,1.0,1.0,#1WR-C,1.0,20.0,0.0,1.0,0.0,0.0,2.8,0.0,1.2,2.4,0.0,5.0,0.0,0.0,31.0,4.0,5.0,5.0,16.0,5.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.08703703703703704,0.08703703703703704,0.12685185185185185,3,30
|
||||||
@ -5929,7 +5929,7 @@ player_id,player_name,cardset_name,rarity,hand,variant,homerun_vl,bp_homerun_vl,
|
|||||||
11161.0,Matt Whiteside,1998 Season,All-Star,R,0.0,2.0,1.0,0.0,0.0,0.0,0.0,3.75,3.6,0.0,5.0,0.0,0.0,22.0,0.0,6.0,1.0,20.25,14.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11435185185185186,0.11435185185185186,0.1837962962962963,16.0,0.0,9.0,1.0,2.0,,#1WR-C,2.0,20.0,8.0,0.0,0.0,0.0,0.0,3.5,3.3,0.0,3.3,5.0,0.0,0.0,33.0,7.0,2.5,4.0,6.7,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19074074074074074,0.19074074074074074,0.44537037037037036,3,0
|
11161.0,Matt Whiteside,1998 Season,All-Star,R,0.0,2.0,1.0,0.0,0.0,0.0,0.0,3.75,3.6,0.0,5.0,0.0,0.0,22.0,0.0,6.0,1.0,20.25,14.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11435185185185186,0.11435185185185186,0.1837962962962963,16.0,0.0,9.0,1.0,2.0,,#1WR-C,2.0,20.0,8.0,0.0,0.0,0.0,0.0,3.5,3.3,0.0,3.3,5.0,0.0,0.0,33.0,7.0,2.5,4.0,6.7,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19074074074074074,0.19074074074074074,0.44537037037037036,3,0
|
||||||
11162.0,Antonio Osuna,1998 Season,MVP,R,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.9,2.0,0.0,5.0,0.0,0.0,45.0,4.0,5.0,5.0,4.1,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.08703703703703704,0.08703703703703704,0.11481481481481481,0.0,3.0,-5.0,1.0,1.0,2.0,#1WR-C,2.0,20.0,2.6,2.0,0.0,0.0,2.55,0.0,2.25,2.25,0.0,5.0,0.0,0.0,42.0,0.0,5.4,1.0,7.2,6.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12175925925925926,0.12175925925925926,0.24537037037037038,3,26
|
11162.0,Antonio Osuna,1998 Season,MVP,R,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.9,2.0,0.0,5.0,0.0,0.0,45.0,4.0,5.0,5.0,4.1,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.08703703703703704,0.08703703703703704,0.11481481481481481,0.0,3.0,-5.0,1.0,1.0,2.0,#1WR-C,2.0,20.0,2.6,2.0,0.0,0.0,2.55,0.0,2.25,2.25,0.0,5.0,0.0,0.0,42.0,0.0,5.4,1.0,7.2,6.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12175925925925926,0.12175925925925926,0.24537037037037038,3,26
|
||||||
11163.0,Jim Pittsley,1998 Season,Reserve,R,0.0,0.0,0.0,0.0,0.0,7.5,0.0,3.75,3.75,0.0,5.0,0.0,0.0,34.0,4.0,8.0,4.0,7.75,1.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16203703703703703,0.16203703703703703,0.23148148148148148,0.0,18.0,0.0,2.0,1.0,,#1WR-C,1.0,20.0,3.3,2.0,0.0,0.0,3.75,0.0,5.05,5.1,0.0,5.0,0.0,0.0,26.0,5.0,6.7,6.0,10.2,0.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19166666666666668,0.19166666666666668,0.3458333333333333,3,33
|
11163.0,Jim Pittsley,1998 Season,Reserve,R,0.0,0.0,0.0,0.0,0.0,7.5,0.0,3.75,3.75,0.0,5.0,0.0,0.0,34.0,4.0,8.0,4.0,7.75,1.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16203703703703703,0.16203703703703703,0.23148148148148148,0.0,18.0,0.0,2.0,1.0,,#1WR-C,1.0,20.0,3.3,2.0,0.0,0.0,3.75,0.0,5.05,5.1,0.0,5.0,0.0,0.0,26.0,5.0,6.7,6.0,10.2,0.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19166666666666668,0.19166666666666668,0.3458333333333333,3,33
|
||||||
11164.0,Jason Johnson,1998 Season,Reserve,R,0.0,0.0,2.0,0.0,0.0,5.4,0.0,5.4,5.1,0.0,5.0,0.0,0.0,22.95,0.0,13.65,2.4,8.65,8.45,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1796296296296296,0.1796296296296296,0.2574074074074075,0.0,7.0,-3.0,5.0,1.0,,#1WR-C,1.0,20.0,0.95,3.0,0.0,0.0,5.4,0.0,5.7,5.7,0.0,5.0,0.0,0.0,17.95,0.0,7.449999999999999,2.5,7.5,17.85,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2013888888888889,0.2013888888888889,0.3194444444444444,5,0
|
11164.0,Jason Johnson,1998 Season,Reserve,R,0.0,0.0,2.0,0.0,0.0,5.4,0.0,5.4,5.1,0.0,5.0,0.0,0.0,31.0,4.0,6.0,4.0,10.2,0.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17962962962962964,0.17962962962962964,0.2574074074074074,0.0,7.0,-3.0,5.0,1.0,,#1WR-C,1.0,20.0,0.0,3.0,0.0,0.0,6.3,0.0,5.7,5.6,0.0,5.0,0.0,0.0,21.0,4.0,0.0,5.0,6.0,17.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2,0.2,0.3,5,0
|
||||||
11165.0,Julio Santana,1998 Season,All-Star,R,0.0,0.85,2.0,0.0,0.0,4.25,0.0,5.1,5.1,0.0,5.0,0.0,0.0,17.95,0.0,11.6,3.75,10.45,12.95,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17407407407407405,0.17407407407407405,0.26481481481481484,0.0,4.0,-2.0,4.0,3.0,,#1WR-C,1.0,20.0,1.3,2.0,0.0,0.0,3.4,0.0,3.3,3.3,0.0,5.0,0.0,0.0,12.95,0.0,9.7,2.2,14.95,20.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13703703703703704,0.13703703703703704,0.23240740740740742,4,31
|
11165.0,Julio Santana,1998 Season,All-Star,R,0.0,0.85,2.0,0.0,0.0,4.25,0.0,5.1,5.1,0.0,5.0,0.0,0.0,17.95,0.0,11.6,3.75,10.45,12.95,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17407407407407405,0.17407407407407405,0.26481481481481484,0.0,4.0,-2.0,4.0,3.0,,#1WR-C,1.0,20.0,1.3,2.0,0.0,0.0,3.4,0.0,3.3,3.3,0.0,5.0,0.0,0.0,12.95,0.0,9.7,2.2,14.95,20.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13703703703703704,0.13703703703703704,0.23240740740740742,4,31
|
||||||
11166.0,Felipe Lira,1998 Season,Replacement,R,0.0,4.75,0.0,0.0,0.0,2.7,0.0,5.1,4.8,0.0,5.0,0.0,0.0,37.0,4.0,0.25,0.0,9.2,6.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1837962962962963,0.1837962962962963,0.34074074074074073,0.0,13.0,9.0,1.0,2.0,,#1WR-C,1.0,20.0,4.0,2.0,1.6,0.0,0.0,5.5,5.7,0.0,5.75,5.0,0.0,0.0,29.0,4.0,3.5,4.0,6.7,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2412037037037037,0.2412037037037037,0.46064814814814814,2,0
|
11166.0,Felipe Lira,1998 Season,Replacement,R,0.0,4.75,0.0,0.0,0.0,2.7,0.0,5.1,4.8,0.0,5.0,0.0,0.0,37.0,4.0,0.25,0.0,9.2,6.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1837962962962963,0.1837962962962963,0.34074074074074073,0.0,13.0,9.0,1.0,2.0,,#1WR-C,1.0,20.0,4.0,2.0,1.6,0.0,0.0,5.5,5.7,0.0,5.75,5.0,0.0,0.0,29.0,4.0,3.5,4.0,6.7,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2412037037037037,0.2412037037037037,0.46064814814814814,2,0
|
||||||
11167.0,Juan Acevedo,1998 Season,Hall of Fame,R,0.0,0.0,1.0,0.0,0.0,2.9,0.0,5.9,6.2,0.0,5.0,0.0,0.0,25.0,4.0,9.0,7.0,11.2,1.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16666666666666666,0.16666666666666666,0.2074074074074074,0.0,6.0,-5.0,2.0,1.0,3.0,#1WR-C,2.0,20.0,0.0,1.0,0.0,0.0,0.0,0.0,3.55,3.25,0.0,5.0,0.0,0.0,26.0,4.0,0.0,7.0,23.45,5.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.09074074074074075,0.09074074074074075,0.10462962962962963,2,12
|
11167.0,Juan Acevedo,1998 Season,Hall of Fame,R,0.0,0.0,1.0,0.0,0.0,2.9,0.0,5.9,6.2,0.0,5.0,0.0,0.0,25.0,4.0,9.0,7.0,11.2,1.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16666666666666666,0.16666666666666666,0.2074074074074074,0.0,6.0,-5.0,2.0,1.0,3.0,#1WR-C,2.0,20.0,0.0,1.0,0.0,0.0,0.0,0.0,3.55,3.25,0.0,5.0,0.0,0.0,26.0,4.0,0.0,7.0,23.45,5.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.09074074074074075,0.09074074074074075,0.10462962962962963,2,12
|
||||||
@ -5967,7 +5967,7 @@ player_id,player_name,cardset_name,rarity,hand,variant,homerun_vl,bp_homerun_vl,
|
|||||||
11228.0,Dave Telgheder,1998 Season,MVP,R,0.0,8.3,0.0,0.0,0.0,0.0,2.2,1.7,0.0,1.7,5.0,0.0,0.0,13.95,0.0,17.4,4.75,2.4,21.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15185185185185185,0.15185185185185185,0.40277777777777785,14.0,20.0,9.0,2.0,1.0,,#1WR-C,2.0,20.0,0.0,0.0,0.0,0.0,3.2,0.0,2.4,2.4,0.0,0.0,0.0,0.0,0.0,0.0,15.0,3.2,34.4,18.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.07407407407407407,0.07407407407407407,0.10370370370370371,5,0
|
11228.0,Dave Telgheder,1998 Season,MVP,R,0.0,8.3,0.0,0.0,0.0,0.0,2.2,1.7,0.0,1.7,5.0,0.0,0.0,13.95,0.0,17.4,4.75,2.4,21.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15185185185185185,0.15185185185185185,0.40277777777777785,14.0,20.0,9.0,2.0,1.0,,#1WR-C,2.0,20.0,0.0,0.0,0.0,0.0,3.2,0.0,2.4,2.4,0.0,0.0,0.0,0.0,0.0,0.0,15.0,3.2,34.4,18.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.07407407407407407,0.07407407407407407,0.10370370370370371,5,0
|
||||||
11229.0,Eddie Guardado,1998 Season,MVP,L,0.0,0.0,1.0,0.0,0.0,4.25,0.0,0.0,1.5,0.0,5.0,0.0,0.0,37.0,4.0,9.75,4.0,9.0,3.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.08101851851851852,0.08101851851851852,0.13425925925925927,0.0,6.0,9.0,1.0,1.0,,#1WL-C,2.0,20.0,0.0,3.0,0.0,0.0,3.0,0.0,3.8,3.5,0.0,5.0,0.0,0.0,32.0,4.0,6.0,4.0,5.2,9.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13240740740740742,0.13240740740740742,0.20185185185185187,3,0
|
11229.0,Eddie Guardado,1998 Season,MVP,L,0.0,0.0,1.0,0.0,0.0,4.25,0.0,0.0,1.5,0.0,5.0,0.0,0.0,37.0,4.0,9.75,4.0,9.0,3.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.08101851851851852,0.08101851851851852,0.13425925925925927,0.0,6.0,9.0,1.0,1.0,,#1WL-C,2.0,20.0,0.0,3.0,0.0,0.0,3.0,0.0,3.8,3.5,0.0,5.0,0.0,0.0,32.0,4.0,6.0,4.0,5.2,9.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13240740740740742,0.13240740740740742,0.20185185185185187,3,0
|
||||||
11230.0,Jeff Montgomery,1998 Season,MVP,R,0.0,0.0,3.0,0.0,0.0,3.0,0.0,5.8,2.8,0.0,5.0,0.0,0.0,29.0,4.0,9.0,5.0,11.2,1.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14444444444444443,0.14444444444444443,0.21388888888888888,5.0,0.0,9.0,1.0,1.0,6.0,#1WR-C,2.0,20.0,0.0,0.0,0.0,0.0,4.5,0.0,0.0,1.5,0.0,5.0,0.0,0.0,42.0,4.0,5.5,4.0,9.0,3.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.0787037037037037,0.0787037037037037,0.12037037037037036,4,0
|
11230.0,Jeff Montgomery,1998 Season,MVP,R,0.0,0.0,3.0,0.0,0.0,3.0,0.0,5.8,2.8,0.0,5.0,0.0,0.0,29.0,4.0,9.0,5.0,11.2,1.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14444444444444443,0.14444444444444443,0.21388888888888888,5.0,0.0,9.0,1.0,1.0,6.0,#1WR-C,2.0,20.0,0.0,0.0,0.0,0.0,4.5,0.0,0.0,1.5,0.0,5.0,0.0,0.0,42.0,4.0,5.5,4.0,9.0,3.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.0787037037037037,0.0787037037037037,0.12037037037037036,4,0
|
||||||
11231.0,Danny Patterson,1998 Season,Starter,R,0.0,2.5,2.0,1.2,0.0,3.2,0.0,6.4,6.35,0.0,5.0,0.0,0.0,22.95,0.0,7.949999999999999,2.4,5.4,13.65,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.21435185185185185,0.21435185185185185,0.36342592592592593,0.0,10.0,-5.0,1.0,1.0,1.0,#1WR-C,2.0,20.0,2.15,1.0,0.0,0.0,4.2,0.0,2.2,2.1,0.0,5.0,0.0,0.0,16.95,0.0,7.8,1.2,13.75,22.65,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12638888888888888,0.12638888888888888,0.2388888888888889,3,0
|
11231.0,Danny Patterson,1998 Season,Starter,R,0.0,2.5,2.0,1.2,0.0,3.2,0.0,6.4,6.3,0.0,5.0,0.0,0.0,26.0,0.0,7.5,1.0,10.2,7.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.21388888888888888,0.21388888888888888,0.362962962962963,0.0,10.0,-5.0,1.0,1.0,1.0,#1WR-C,2.0,20.0,2.1,1.0,0.0,0.0,4.25,0.0,2.15,2.1,0.0,5.0,0.0,0.0,25.0,4.0,0.9,5.0,11.6,15.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1259259259259259,0.1259259259259259,0.2375,3,0
|
||||||
11232.0,Scott Bailes,1998 Season,Replacement,L,0.0,1.2,2.0,0.0,0.0,6.0,0.0,2.7,2.7,0.0,5.0,0.0,0.0,33.0,4.0,2.8,4.0,8.3,7.3,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14907407407407408,0.14907407407407408,0.2657407407407407,0.0,15.0,-5.0,1.0,1.0,,#1WL-C,2.0,20.0,1.4,3.0,0.0,0.0,10.3,0.0,6.5,6.4,0.0,5.0,0.0,0.0,22.0,6.0,2.6,5.0,5.2,5.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.26481481481481484,0.26481481481481484,0.44074074074074077,4,50
|
11232.0,Scott Bailes,1998 Season,Replacement,L,0.0,1.2,2.0,0.0,0.0,6.0,0.0,2.7,2.7,0.0,5.0,0.0,0.0,33.0,4.0,2.8,4.0,8.3,7.3,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14907407407407408,0.14907407407407408,0.2657407407407407,0.0,15.0,-5.0,1.0,1.0,,#1WL-C,2.0,20.0,1.4,3.0,0.0,0.0,10.3,0.0,6.5,6.4,0.0,5.0,0.0,0.0,22.0,6.0,2.6,5.0,5.2,5.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.26481481481481484,0.26481481481481484,0.44074074074074077,4,50
|
||||||
11233.0,Mike Fetters,1998 Season,MVP,R,0.0,1.2,2.0,0.0,0.0,4.2,0.0,3.2,2.5,0.0,5.0,0.0,0.0,20.95,0.0,10.850000000000001,3.2,11.1,14.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13518518518518519,0.13518518518518519,0.2351851851851852,0.0,20.0,0.0,1.0,1.0,2.0,#1WR-C,2.0,20.0,0.35,2.0,0.0,0.0,2.1,0.0,2.4,2.25,0.0,5.0,0.0,0.0,31.95,0.0,9.6,0.0,12.0,11.35,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.09814814814814815,0.09814814814814815,0.1550925925925926,1,31
|
11233.0,Mike Fetters,1998 Season,MVP,R,0.0,1.2,2.0,0.0,0.0,4.2,0.0,3.2,2.5,0.0,5.0,0.0,0.0,20.95,0.0,10.850000000000001,3.2,11.1,14.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13518518518518519,0.13518518518518519,0.2351851851851852,0.0,20.0,0.0,1.0,1.0,2.0,#1WR-C,2.0,20.0,0.35,2.0,0.0,0.0,2.1,0.0,2.4,2.25,0.0,5.0,0.0,0.0,31.95,0.0,9.6,0.0,12.0,11.35,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.09814814814814815,0.09814814814814815,0.1550925925925926,1,31
|
||||||
11234.0,Mike Myers,1998 Season,Hall of Fame,L,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6,0.0,5.0,0.0,0.0,50.0,4.0,3.0,0.0,9.0,6.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.03796296296296296,0.03796296296296296,0.03796296296296296,6.0,8.0,0.0,1.0,1.0,0.0,#1WL-C,2.0,20.0,0.0,2.0,0.0,0.0,1.9,0.0,5.7,5.75,0.0,5.0,0.0,0.0,22.0,6.0,0.0,0.0,19.4,11.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15601851851851853,0.15601851851851853,0.2013888888888889,2,38
|
11234.0,Mike Myers,1998 Season,Hall of Fame,L,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6,0.0,5.0,0.0,0.0,50.0,4.0,3.0,0.0,9.0,6.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.03796296296296296,0.03796296296296296,0.03796296296296296,6.0,8.0,0.0,1.0,1.0,0.0,#1WL-C,2.0,20.0,0.0,2.0,0.0,0.0,1.9,0.0,5.7,5.75,0.0,5.0,0.0,0.0,22.0,6.0,0.0,0.0,19.4,11.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15601851851851853,0.15601851851851853,0.2013888888888889,2,38
|
||||||
@ -6106,9 +6106,9 @@ player_id,player_name,cardset_name,rarity,hand,variant,homerun_vl,bp_homerun_vl,
|
|||||||
11525.0,Jin Ho Cho,1998 Season,Replacement,R,0.0,0.0,2.0,0.0,0.0,13.7,0.0,5.7,5.1,0.0,5.0,0.0,0.0,20.0,4.0,0.0,6.0,10.6,6.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.25925925925925924,0.25925925925925924,0.41388888888888886,0.0,11.0,9.0,4.0,1.0,,#1WR-C,1.0,20.0,1.2,3.0,0.0,0.0,2.25,0.0,6.05,6.1,0.0,5.0,0.0,0.0,37.0,0.0,6.8,0.0,7.7,3.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1814814814814815,0.1814814814814815,0.2773148148148148,4,0
|
11525.0,Jin Ho Cho,1998 Season,Replacement,R,0.0,0.0,2.0,0.0,0.0,13.7,0.0,5.7,5.1,0.0,5.0,0.0,0.0,20.0,4.0,0.0,6.0,10.6,6.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.25925925925925924,0.25925925925925924,0.41388888888888886,0.0,11.0,9.0,4.0,1.0,,#1WR-C,1.0,20.0,1.2,3.0,0.0,0.0,2.25,0.0,6.05,6.1,0.0,5.0,0.0,0.0,37.0,0.0,6.8,0.0,7.7,3.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1814814814814815,0.1814814814814815,0.2773148148148148,4,0
|
||||||
11526.0,Russ Ortiz,1998 Season,Starter,R,0.0,2.35,1.0,0.0,0.0,5.7,0.0,4.1,4.25,0.0,5.0,0.0,0.0,27.0,4.0,1.65,7.0,10.2,6.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17962962962962964,0.17962962962962964,0.31157407407407406,0.0,7.0,-1.0,4.0,3.0,,#1WR-C,1.0,20.0,0.0,1.0,0.0,0.0,6.4,0.0,2.5,2.5,0.0,5.0,0.0,0.0,38.0,4.0,4.0,4.0,9.1,2.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13333333333333333,0.13333333333333333,0.2064814814814815,2,13
|
11526.0,Russ Ortiz,1998 Season,Starter,R,0.0,2.35,1.0,0.0,0.0,5.7,0.0,4.1,4.25,0.0,5.0,0.0,0.0,27.0,4.0,1.65,7.0,10.2,6.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17962962962962964,0.17962962962962964,0.31157407407407406,0.0,7.0,-1.0,4.0,3.0,,#1WR-C,1.0,20.0,0.0,1.0,0.0,0.0,6.4,0.0,2.5,2.5,0.0,5.0,0.0,0.0,38.0,4.0,4.0,4.0,9.1,2.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13333333333333333,0.13333333333333333,0.2064814814814815,2,13
|
||||||
11527.0,Matt Morris,1998 Season,MVP,R,0.0,0.0,1.0,0.0,0.0,4.9,0.0,3.9,3.9,0.0,5.0,0.0,0.0,33.0,4.0,0.0,6.0,15.2,2.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14537037037037037,0.14537037037037037,0.20462962962962963,0.0,5.0,-1.0,7.0,1.0,,#1WR-C,3.0,20.0,0.0,1.0,0.0,0.0,3.0,0.0,4.2,4.2,0.0,5.0,0.0,0.0,29.0,4.0,0.0,5.0,16.8,6.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13333333333333333,0.13333333333333333,0.175,3,13
|
11527.0,Matt Morris,1998 Season,MVP,R,0.0,0.0,1.0,0.0,0.0,4.9,0.0,3.9,3.9,0.0,5.0,0.0,0.0,33.0,4.0,0.0,6.0,15.2,2.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14537037037037037,0.14537037037037037,0.20462962962962963,0.0,5.0,-1.0,7.0,1.0,,#1WR-C,3.0,20.0,0.0,1.0,0.0,0.0,3.0,0.0,4.2,4.2,0.0,5.0,0.0,0.0,29.0,4.0,0.0,5.0,16.8,6.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13333333333333333,0.13333333333333333,0.175,3,13
|
||||||
|
11532.0,Kevin Brown,1998 Promos,Hall of Fame,R,0.0,0.0,0.0,0.0,0.0,1.2,0.0,6.4,6.3,0.0,5.0,3.0,4.5,31.5,4.0,5.0,0.0,9.4,2.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15185185185185185,0.2212962962962963,0.16296296296296298,0.0,8.0,-3.0,7.0,1.0,,#1WR-C,2.0,21.0,0.0,2.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,5.0,1.0,3.2,45.8,4.0,0.0,4.0,9.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.0787037037037037,0.1175925925925926,0.10648148148148148,2,8
|
||||||
11533.0,Willie Banks,1998 Promos,Hall of Fame,R,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1,1.9,0.0,5.0,0.0,0.0,37.0,0.0,14.0,4.0,9.9,5.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.06018518518518518,0.06018518518518518,0.06018518518518518,3.0,17.0,-3.0,1.0,1.0,1.0,#1WR-C,3.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2,2.1,0.0,0.0,0.0,8.65,41.35,4.0,2.0,4.0,10.8,3.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.03981481481481482,0.11990740740740741,0.03981481481481482,1,14
|
11533.0,Willie Banks,1998 Promos,Hall of Fame,R,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1,1.9,0.0,5.0,0.0,0.0,37.0,0.0,14.0,4.0,9.9,5.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.06018518518518518,0.06018518518518518,0.06018518518518518,3.0,17.0,-3.0,1.0,1.0,1.0,#1WR-C,3.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2,2.1,0.0,0.0,0.0,8.65,41.35,4.0,2.0,4.0,10.8,3.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.03981481481481482,0.11990740740740741,0.03981481481481482,1,14
|
||||||
11534.0,Tim Worrell,1998 Promos,Hall of Fame,R,0.0,8.1,0.0,0.0,0.0,0.0,0.0,1.6,0.0,1.5,5.0,0.0,0.0,4.0,4.0,13.9,18.0,8.4,11.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12685185185185185,0.12685185185185185,0.35185185185185186,0.0,4.0,9.0,2.0,1.0,,#1WR-C,2.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,54.0,4.0,0.0,4.0,8.0,9.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.0,0.0,0.0,3,0
|
11534.0,Tim Worrell,1998 Promos,Hall of Fame,R,0.0,8.1,0.0,0.0,0.0,0.0,0.0,1.6,0.0,1.5,5.0,0.0,0.0,4.0,4.0,13.9,18.0,8.4,11.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12685185185185185,0.12685185185185185,0.35185185185185186,0.0,4.0,9.0,2.0,1.0,,#1WR-C,2.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,54.0,4.0,0.0,4.0,8.0,9.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.0,0.0,0.0,3,0
|
||||||
11532.0,Kevin Brown,1998 Promos,Hall of Fame,R,0.0,0.0,0.0,0.0,0.0,1.2,0.0,6.4,6.3,0.0,5.0,3.0,4.5,31.5,4.0,5.0,0.0,9.4,2.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15185185185185185,0.2212962962962963,0.16296296296296298,0.0,8.0,-3.0,7.0,1.0,,#1WR-C,2.0,21.0,0.0,2.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,5.0,1.0,3.2,45.8,4.0,0.0,4.0,9.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.0787037037037037,0.1175925925925926,0.10648148148148148,2,8
|
|
||||||
11535.0,Eric Milton,1998 Promos,Hall of Fame,L,0.0,3.9,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,4.2,43.8,4.0,2.1,4.0,4.0,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.07314814814814814,0.11203703703703703,0.22314814814814815,0.0,1.0,-2.0,5.0,1.0,,#1WL-C,1.0,21.0,0.0,3.0,0.0,0.0,0.0,0.0,3.25,2.25,0.0,5.0,1.0,15.25,21.75,8.0,5.0,4.0,7.75,2.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.08796296296296297,0.23842592592592593,0.12962962962962962,4,0
|
11535.0,Eric Milton,1998 Promos,Hall of Fame,L,0.0,3.9,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,4.2,43.8,4.0,2.1,4.0,4.0,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.07314814814814814,0.11203703703703703,0.22314814814814815,0.0,1.0,-2.0,5.0,1.0,,#1WL-C,1.0,21.0,0.0,3.0,0.0,0.0,0.0,0.0,3.25,2.25,0.0,5.0,1.0,15.25,21.75,8.0,5.0,4.0,7.75,2.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.08796296296296297,0.23842592592592593,0.12962962962962962,4,0
|
||||||
11536.0,David Wells,1998 Promos,All-Star,L,0.0,0.65,3.0,0.0,0.0,3.75,0.0,5.4,5.4,0.0,5.0,0.0,5.7,21.25,1.95,4.8,0.0,8.25,13.85,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1777777777777778,0.2305555555555556,0.2722222222222222,0.0,2.0,-2.0,7.0,1.0,,#1WL-C,1.0,21.0,1.7999999999999998,2.0,0.0,0.0,2.1,0.0,2.8,3.2,0.0,5.0,0.0,4.5,29.450000000000003,1.9,9.0,0.0,6.55,10.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12407407407407407,0.16574074074074074,0.2212962962962963,4,23
|
11536.0,David Wells,1998 Promos,All-Star,L,0.0,0.65,3.0,0.0,0.0,3.75,0.0,5.4,5.4,0.0,5.0,0.0,5.7,21.25,1.95,4.8,0.0,8.25,13.85,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1777777777777778,0.2305555555555556,0.2722222222222222,0.0,2.0,-2.0,7.0,1.0,,#1WL-C,1.0,21.0,1.7999999999999998,2.0,0.0,0.0,2.1,0.0,2.8,3.2,0.0,5.0,0.0,4.5,29.450000000000003,1.9,9.0,0.0,6.55,10.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12407407407407407,0.16574074074074074,0.2212962962962963,4,23
|
||||||
11537.0,Jeff Shaw,1998 Promos,Hall of Fame,R,0.0,0.2,2.0,0.0,0.0,0.0,0.0,2.7,2.55,0.0,5.0,1.0,4.1,21.849999999999998,0.0,8.1,1.35,19.0,11.15,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.08287037037037036,0.1300925925925926,0.11620370370370371,0.0,0.0,5.0,1.0,1.0,6.0,#1WR-C,2.0,21.0,0.0,1.0,0.0,0.0,0.0,0.0,4.9,4.75,0.0,5.0,0.0,3.75,26.2,0.0,4.800000000000001,1.4,18.1,9.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11712962962962964,0.15185185185185185,0.13101851851851853,1,31
|
11537.0,Jeff Shaw,1998 Promos,Hall of Fame,R,0.0,0.2,2.0,0.0,0.0,0.0,0.0,2.7,2.55,0.0,5.0,1.0,4.1,21.849999999999998,0.0,8.1,1.35,19.0,11.15,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.08287037037037036,0.1300925925925926,0.11620370370370371,0.0,0.0,5.0,1.0,1.0,6.0,#1WR-C,2.0,21.0,0.0,1.0,0.0,0.0,0.0,0.0,4.9,4.75,0.0,5.0,0.0,3.75,26.2,0.0,4.800000000000001,1.4,18.1,9.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11712962962962964,0.15185185185185185,0.13101851851851853,1,31
|
||||||
@ -6126,7 +6126,7 @@ player_id,player_name,cardset_name,rarity,hand,variant,homerun_vl,bp_homerun_vl,
|
|||||||
11573.0,Bryan Rekar,1998 Season,All-Star,R,0.0,0.0,2.0,0.0,0.0,3.3,0.0,4.5,4.5,0.0,5.0,0.0,0.0,28.0,1.0,5.0,5.0,15.2,5.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14629629629629629,0.14629629629629629,0.20462962962962963,0.0,2.0,3.0,5.0,1.0,,#1WR-C,3.0,20.0,2.55,2.0,0.0,0.0,4.75,0.0,2.5,2.4,0.0,5.0,0.0,0.0,29.0,4.0,0.45,5.0,7.75,13.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14537037037037037,0.14537037037037037,0.287962962962963,3,28
|
11573.0,Bryan Rekar,1998 Season,All-Star,R,0.0,0.0,2.0,0.0,0.0,3.3,0.0,4.5,4.5,0.0,5.0,0.0,0.0,28.0,1.0,5.0,5.0,15.2,5.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14629629629629629,0.14629629629629629,0.20462962962962963,0.0,2.0,3.0,5.0,1.0,,#1WR-C,3.0,20.0,2.55,2.0,0.0,0.0,4.75,0.0,2.5,2.4,0.0,5.0,0.0,0.0,29.0,4.0,0.45,5.0,7.75,13.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14537037037037037,0.14537037037037037,0.287962962962963,3,28
|
||||||
11574.0,Mike Welch,1998 Season,Reserve,R,0.0,10.3,0.0,1.2,0.0,0.0,14.1,2.8,0.0,3.75,5.0,0.0,0.0,32.0,0.0,0.6,4.0,4.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.32083333333333336,0.32083333333333336,0.7597222222222222,0.0,0.0,9.0,2.0,1.0,,#1WR-C,2.0,20.0,0.0,2.0,0.0,0.0,4.05,0.0,1.95,2.25,0.0,5.0,0.0,0.0,27.0,4.0,0.0,4.0,11.0,17.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1087962962962963,0.1087962962962963,0.17407407407407408,3,0
|
11574.0,Mike Welch,1998 Season,Reserve,R,0.0,10.3,0.0,1.2,0.0,0.0,14.1,2.8,0.0,3.75,5.0,0.0,0.0,32.0,0.0,0.6,4.0,4.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.32083333333333336,0.32083333333333336,0.7597222222222222,0.0,0.0,9.0,2.0,1.0,,#1WR-C,2.0,20.0,0.0,2.0,0.0,0.0,4.05,0.0,1.95,2.25,0.0,5.0,0.0,0.0,27.0,4.0,0.0,4.0,11.0,17.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1087962962962963,0.1087962962962963,0.17407407407407408,3,0
|
||||||
11581.0,Kelvim Escobar,1998 Season,Hall of Fame,R,0.0,0.0,2.0,0.0,0.0,2.1,0.0,3.8,3.9,0.0,5.0,0.0,0.0,37.95,0.0,7.6499999999999995,1.2,9.3,6.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12314814814814816,0.12314814814814816,0.17037037037037037,0.0,0.0,9.0,4.0,3.0,,#1WR-C,1.0,20.0,0.0,2.0,0.0,0.0,3.75,0.0,3.5,3.5,0.0,5.0,0.0,0.0,27.95,0.0,6.45,1.2,14.6,11.05,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13194444444444445,0.13194444444444445,0.19444444444444445,5,0
|
11581.0,Kelvim Escobar,1998 Season,Hall of Fame,R,0.0,0.0,2.0,0.0,0.0,2.1,0.0,3.8,3.9,0.0,5.0,0.0,0.0,37.95,0.0,7.6499999999999995,1.2,9.3,6.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12314814814814816,0.12314814814814816,0.17037037037037037,0.0,0.0,9.0,4.0,3.0,,#1WR-C,1.0,20.0,0.0,2.0,0.0,0.0,3.75,0.0,3.5,3.5,0.0,5.0,0.0,0.0,27.95,0.0,6.45,1.2,14.6,11.05,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13194444444444445,0.13194444444444445,0.19444444444444445,5,0
|
||||||
11582.0,Nerio Rodriguez,1998 Season,Starter,R,0.0,0.0,0.0,0.0,0.0,8.1,0.0,6.45,6.45,0.0,5.0,0.0,0.0,9.95,0.0,16.15,7.1,11.35,8.45,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2175925925925926,0.2175925925925926,0.29259259259259257,0.0,7.0,-1.0,2.0,1.0,,#1WR-C,2.0,20.0,0.0,3.0,1.2,0.0,5.1,0.0,2.2,2.1,0.0,0.0,0.0,0.0,18.95,0.0,12.599999999999998,4.8,9.45,19.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11203703703703703,0.11203703703703703,0.22314814814814812,5,0
|
11582.0,Nerio Rodriguez,1998 Season,Starter,R,0.0,0.0,0.0,0.0,0.0,8.1,0.0,6.4,6.5,0.0,5.0,0.0,0.0,14.0,5.0,10.0,6.0,16.5,1.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2175925925925926,0.2175925925925926,0.29259259259259257,0.0,7.0,-1.0,2.0,1.0,,#1WR-C,2.0,20.0,0.0,3.0,1.2,0.0,5.1,0.0,2.8,2.1,0.0,0.0,0.0,0.0,23.0,0.0,5.9,8.0,14.0,13.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1175925925925926,0.1175925925925926,0.22870370370370371,5,0
|
||||||
11583.0,Bob Wolcott,1998 Season,Hall of Fame,R,0.0,5.3,0.0,1.4,0.0,0.0,0.0,6.2,6.0,0.0,5.0,0.0,0.0,18.0,4.0,2.7,5.0,11.4,14.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19814814814814816,0.19814814814814816,0.3712962962962963,0.0,6.0,-5.0,6.0,1.0,,#1WR-C,3.0,20.0,0.0,0.0,0.0,0.0,1.65,0.0,1.35,2.4,0.0,0.0,0.0,0.0,33.0,0.0,9.0,0.0,21.0,10.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.05,0.05,0.06527777777777778,4,50
|
11583.0,Bob Wolcott,1998 Season,Hall of Fame,R,0.0,5.3,0.0,1.4,0.0,0.0,0.0,6.2,6.0,0.0,5.0,0.0,0.0,18.0,4.0,2.7,5.0,11.4,14.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19814814814814816,0.19814814814814816,0.3712962962962963,0.0,6.0,-5.0,6.0,1.0,,#1WR-C,3.0,20.0,0.0,0.0,0.0,0.0,1.65,0.0,1.35,2.4,0.0,0.0,0.0,0.0,33.0,0.0,9.0,0.0,21.0,10.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.05,0.05,0.06527777777777778,4,50
|
||||||
11584.0,Armando Reynoso,1998 Season,MVP,R,0.0,0.0,2.0,0.0,0.0,2.5,0.0,2.5,2.95,0.0,5.0,0.0,0.0,14.0,4.0,5.0,4.0,26.0,11.05,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10601851851851851,0.10601851851851851,0.15694444444444444,9.0,6.0,-2.0,6.0,1.0,,#1WR-C,2.0,20.0,1.05,0.0,0.0,0.0,5.7,0.0,5.1,4.75,0.0,5.0,0.0,0.0,36.0,0.0,5.95,0.0,7.2,8.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17685185185185184,0.17685185185185184,0.2587962962962963,1,10
|
11584.0,Armando Reynoso,1998 Season,MVP,R,0.0,0.0,2.0,0.0,0.0,2.5,0.0,2.5,2.95,0.0,5.0,0.0,0.0,14.0,4.0,5.0,4.0,26.0,11.05,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10601851851851851,0.10601851851851851,0.15694444444444444,9.0,6.0,-2.0,6.0,1.0,,#1WR-C,2.0,20.0,1.05,0.0,0.0,0.0,5.7,0.0,5.1,4.75,0.0,5.0,0.0,0.0,36.0,0.0,5.95,0.0,7.2,8.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17685185185185184,0.17685185185185184,0.2587962962962963,1,10
|
||||||
11589.0,Greg McCarthy,1998 Season,Hall of Fame,L,0.0,1.7999999999999998,2.0,0.0,0.0,0.0,0.0,2.2,2.1,0.0,0.0,0.0,0.0,48.95,0.0,7.3,0.0,5.1,9.55,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.06574074074074074,0.06574074074074074,0.1435185185185185,0.0,9.0,4.0,1.0,1.0,,#1WL-C,2.0,20.0,0.55,1.0,0.0,0.0,5.1,0.0,2.5,2.5,0.0,5.0,0.0,0.0,35.95,1.6,7.9,0.0,8.35,8.55,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12638888888888888,0.12638888888888888,0.20277777777777775,1,0
|
11589.0,Greg McCarthy,1998 Season,Hall of Fame,L,0.0,1.7999999999999998,2.0,0.0,0.0,0.0,0.0,2.2,2.1,0.0,0.0,0.0,0.0,48.95,0.0,7.3,0.0,5.1,9.55,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.06574074074074074,0.06574074074074074,0.1435185185185185,0.0,9.0,4.0,1.0,1.0,,#1WL-C,2.0,20.0,0.55,1.0,0.0,0.0,5.1,0.0,2.5,2.5,0.0,5.0,0.0,0.0,35.95,1.6,7.9,0.0,8.35,8.55,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12638888888888888,0.12638888888888888,0.20277777777777775,1,0
|
||||||
@ -6149,9 +6149,9 @@ player_id,player_name,cardset_name,rarity,hand,variant,homerun_vl,bp_homerun_vl,
|
|||||||
11622.0,Rodney Myers,1998 Season,Replacement,R,0.0,0.0,0.0,0.0,0.0,16.6,0.0,10.0,6.8,0.0,5.0,0.0,0.0,21.0,5.0,0.0,6.0,7.4,1.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.33240740740740743,0.33240740740740743,0.4861111111111111,0.0,11.0,5.0,1.0,2.0,,#1WR-C,1.0,20.0,3.25,0.0,0.0,0.0,0.0,0.0,6.4,6.4,0.0,5.0,0.0,0.0,38.0,0.0,1.75,0.0,13.6,4.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17175925925925925,0.17175925925925925,0.262037037037037,5,0
|
11622.0,Rodney Myers,1998 Season,Replacement,R,0.0,0.0,0.0,0.0,0.0,16.6,0.0,10.0,6.8,0.0,5.0,0.0,0.0,21.0,5.0,0.0,6.0,7.4,1.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.33240740740740743,0.33240740740740743,0.4861111111111111,0.0,11.0,5.0,1.0,2.0,,#1WR-C,1.0,20.0,3.25,0.0,0.0,0.0,0.0,0.0,6.4,6.4,0.0,5.0,0.0,0.0,38.0,0.0,1.75,0.0,13.6,4.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17175925925925925,0.17175925925925925,0.262037037037037,5,0
|
||||||
11623.0,Stan Spencer,1998 Season,Hall of Fame,R,0.0,1.15,2.0,0.0,0.0,5.9,0.0,2.8,2.8,0.0,5.0,0.0,0.0,22.95,0.0,16.2,6.45,5.1,8.65,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14953703703703705,0.14953703703703705,0.2638888888888889,0.0,0.0,9.0,5.0,4.0,,#1WR-C,1.0,20.0,0.55,2.0,0.0,0.0,0.0,0.0,3.8,3.8,0.0,5.0,0.0,0.0,49.75,0.0,4.2,0.0,5.7,4.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10787037037037035,0.10787037037037035,0.15092592592592594,5,0
|
11623.0,Stan Spencer,1998 Season,Hall of Fame,R,0.0,1.15,2.0,0.0,0.0,5.9,0.0,2.8,2.8,0.0,5.0,0.0,0.0,22.95,0.0,16.2,6.45,5.1,8.65,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14953703703703705,0.14953703703703705,0.2638888888888889,0.0,0.0,9.0,5.0,4.0,,#1WR-C,1.0,20.0,0.55,2.0,0.0,0.0,0.0,0.0,3.8,3.8,0.0,5.0,0.0,0.0,49.75,0.0,4.2,0.0,5.7,4.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10787037037037035,0.10787037037037035,0.15092592592592594,5,0
|
||||||
11624.0,Gil Heredia,1998 Season,Starter,R,0.0,0.0,3.0,0.0,0.0,5.6,0.0,1.4,1.4,0.0,5.0,0.0,0.0,31.0,4.0,0.0,5.0,5.0,17.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11481481481481481,0.11481481481481481,0.20833333333333334,0.0,0.0,-5.0,5.0,4.0,,#1WR-C,1.0,20.0,0.0,0.0,0.0,0.0,9.1,0.0,5.4,5.5,0.0,5.0,0.0,0.0,33.0,4.0,0.0,5.0,11.5,0.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20833333333333334,0.20833333333333334,0.29259259259259257,3,0
|
11624.0,Gil Heredia,1998 Season,Starter,R,0.0,0.0,3.0,0.0,0.0,5.6,0.0,1.4,1.4,0.0,5.0,0.0,0.0,31.0,4.0,0.0,5.0,5.0,17.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11481481481481481,0.11481481481481481,0.20833333333333334,0.0,0.0,-5.0,5.0,4.0,,#1WR-C,1.0,20.0,0.0,0.0,0.0,0.0,9.1,0.0,5.4,5.5,0.0,5.0,0.0,0.0,33.0,4.0,0.0,5.0,11.5,0.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20833333333333334,0.20833333333333334,0.29259259259259257,3,0
|
||||||
|
11629.0,Randy Johnson,1998 Promos,Hall of Fame,L,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.25,2.0,0.0,0.0,0.0,9.8,46.2,8.0,0.0,4.0,6.75,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.03935185185185185,0.1300925925925926,0.03935185185185185,2.0,6.0,-2.0,7.0,1.0,,#1WL-C,3.0,21.0,0.0,1.0,0.0,0.0,1.9,0.0,0.1,6.3,0.0,5.0,0.0,7.3,37.7,4.0,4.0,4.0,5.0,2.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10462962962962963,0.17222222222222222,0.1361111111111111,4,51
|
||||||
11630.0,Chad Bradford,1998 Promos,Hall of Fame,R,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2,2.7,0.0,5.0,0.0,0.0,25.0,0.0,19.0,8.0,15.8,0.3,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.07777777777777778,0.07777777777777778,0.07777777777777778,10.0,7.0,9.0,1.0,1.0,1.0,#1WR-C,3.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9,0.0,5.0,0.0,2.55,13.45,4.0,1.0,4.0,47.0,0.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.040740740740740744,0.06435185185185185,0.040740740740740744,1,30
|
11630.0,Chad Bradford,1998 Promos,Hall of Fame,R,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2,2.7,0.0,5.0,0.0,0.0,25.0,0.0,19.0,8.0,15.8,0.3,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.07777777777777778,0.07777777777777778,0.07777777777777778,10.0,7.0,9.0,1.0,1.0,1.0,#1WR-C,3.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9,0.0,5.0,0.0,2.55,13.45,4.0,1.0,4.0,47.0,0.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.040740740740740744,0.06435185185185185,0.040740740740740744,1,30
|
||||||
11631.0,Trevor Hoffman,1998 Promos,Hall of Fame,R,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1,57.9,4.0,0.0,4.0,8.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.0,0.04722222222222222,0.0,0.0,20.0,9.0,1.0,1.0,6.0,#1WR-C,3.0,21.0,0.0,0.0,0.0,0.0,3.2,0.0,0.0,1.25,0.0,5.0,0.0,9.0,36.0,4.0,4.8,4.0,8.0,3.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.06435185185185185,0.1476851851851852,0.09398148148148149,5,0
|
11631.0,Trevor Hoffman,1998 Promos,Hall of Fame,R,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1,57.9,4.0,0.0,4.0,8.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.0,0.04722222222222222,0.0,0.0,20.0,9.0,1.0,1.0,6.0,#1WR-C,3.0,21.0,0.0,0.0,0.0,0.0,3.2,0.0,0.0,1.25,0.0,5.0,0.0,9.0,36.0,4.0,4.8,4.0,8.0,3.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.06435185185185185,0.1476851851851852,0.09398148148148149,5,0
|
||||||
11629.0,Randy Johnson,1998 Promos,Hall of Fame,L,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.25,2.0,0.0,0.0,0.0,9.8,46.2,8.0,0.0,4.0,6.75,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.03935185185185185,0.1300925925925926,0.03935185185185185,2.0,6.0,-2.0,7.0,1.0,,#1WL-C,3.0,21.0,0.0,1.0,0.0,0.0,1.9,0.0,0.1,6.3,0.0,5.0,0.0,7.3,37.7,4.0,4.0,4.0,5.0,2.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10462962962962963,0.17222222222222222,0.1361111111111111,4,51
|
|
||||||
11632.0,Roger Clemens,1998 Promos,Hall of Fame,R,0.0,0.0,1.0,0.0,0.0,1.5,0.0,3.5,0.0,0.0,5.0,0.0,7.25,41.75,4.0,2.0,4.0,9.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.07407407407407407,0.1412037037037037,0.10185185185185185,0.0,5.0,0.0,7.0,1.0,,#1WR-C,1.0,21.0,0.0,0.0,0.0,0.0,1.9,0.0,2.4,2.4,0.0,0.0,0.0,4.75,47.25,1.0,4.0,0.0,13.7,1.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.062037037037037036,0.10601851851851851,0.07962962962962963,4,8
|
11632.0,Roger Clemens,1998 Promos,Hall of Fame,R,0.0,0.0,1.0,0.0,0.0,1.5,0.0,3.5,0.0,0.0,5.0,0.0,7.25,41.75,4.0,2.0,4.0,9.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.07407407407407407,0.1412037037037037,0.10185185185185185,0.0,5.0,0.0,7.0,1.0,,#1WR-C,1.0,21.0,0.0,0.0,0.0,0.0,1.9,0.0,2.4,2.4,0.0,0.0,0.0,4.75,47.25,1.0,4.0,0.0,13.7,1.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.062037037037037036,0.10601851851851851,0.07962962962962963,4,8
|
||||||
11640.0,Mike Holtz,1998 Season,Reserve,L,0.0,0.0,0.0,0.0,0.0,4.2,0.0,3.2,3.2,0.0,5.0,0.0,0.0,43.8,0.0,4.5,0.0,9.7,5.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1212962962962963,0.1212962962962963,0.16018518518518518,0.0,20.0,-5.0,1.0,1.0,0.0,#1WL-C,1.0,20.0,0.0,0.0,0.0,0.0,10.15,0.0,10.15,10.15,0.0,5.0,0.0,0.0,22.95,1.1,6.4,0.0,6.95,6.15,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.30509259259259264,0.30509259259259264,0.3990740740740741,5,0
|
11640.0,Mike Holtz,1998 Season,Reserve,L,0.0,0.0,0.0,0.0,0.0,4.2,0.0,3.2,3.2,0.0,5.0,0.0,0.0,43.8,0.0,4.5,0.0,9.7,5.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1212962962962963,0.1212962962962963,0.16018518518518518,0.0,20.0,-5.0,1.0,1.0,0.0,#1WL-C,1.0,20.0,0.0,0.0,0.0,0.0,10.15,0.0,10.15,10.15,0.0,5.0,0.0,0.0,22.95,1.1,6.4,0.0,6.95,6.15,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.30509259259259264,0.30509259259259264,0.3990740740740741,5,0
|
||||||
11641.0,Steve Karsay,1998 Season,All-Star,R,0.0,0.0,1.0,0.0,0.0,1.9,0.0,4.5,4.2,0.0,5.0,0.0,0.0,16.95,0.0,14.650000000000002,8.7,13.6,8.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12592592592592594,0.12592592592592594,0.1574074074074074,0.0,17.0,-5.0,2.0,1.0,,#1WR-C,1.0,20.0,0.5,1.0,0.0,0.0,5.7,0.0,3.8,3.9,0.0,5.0,0.0,0.0,22.95,0.0,6.4,0.0,14.3,15.45,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15648148148148147,0.15648148148148147,0.23703703703703702,3,0
|
11641.0,Steve Karsay,1998 Season,All-Star,R,0.0,0.0,1.0,0.0,0.0,1.9,0.0,4.5,4.2,0.0,5.0,0.0,0.0,16.95,0.0,14.650000000000002,8.7,13.6,8.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12592592592592594,0.12592592592592594,0.1574074074074074,0.0,17.0,-5.0,2.0,1.0,,#1WR-C,1.0,20.0,0.5,1.0,0.0,0.0,5.7,0.0,3.8,3.9,0.0,5.0,0.0,0.0,22.95,0.0,6.4,0.0,14.3,15.45,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15648148148148147,0.15648148148148147,0.23703703703703702,3,0
|
||||||
@ -6160,11 +6160,11 @@ player_id,player_name,cardset_name,rarity,hand,variant,homerun_vl,bp_homerun_vl,
|
|||||||
11650.0,Jose Paniagua,1998 Season,MVP,R,0.0,4.0,0.0,0.0,0.0,2.2,0.0,1.65,1.65,0.0,5.0,0.0,0.0,36.95,0.0,7.25,2.4,6.1,11.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1111111111111111,0.1111111111111111,0.24259259259259255,0.0,18.0,-5.0,1.0,1.0,0.0,#1WR-C,1.0,20.0,0.95,1.0,0.0,0.0,2.1,0.0,2.75,2.7,0.0,5.0,0.0,0.0,21.95,0.0,7.050000000000001,3.25,17.3,14.95,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10648148148148148,0.10648148148148148,0.1662037037037037,1,0
|
11650.0,Jose Paniagua,1998 Season,MVP,R,0.0,4.0,0.0,0.0,0.0,2.2,0.0,1.65,1.65,0.0,5.0,0.0,0.0,36.95,0.0,7.25,2.4,6.1,11.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1111111111111111,0.1111111111111111,0.24259259259259255,0.0,18.0,-5.0,1.0,1.0,0.0,#1WR-C,1.0,20.0,0.95,1.0,0.0,0.0,2.1,0.0,2.75,2.7,0.0,5.0,0.0,0.0,21.95,0.0,7.050000000000001,3.25,17.3,14.95,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10648148148148148,0.10648148148148148,0.1662037037037037,1,0
|
||||||
11651.0,Sean Lawrence,1998 Season,All-Star,L,0.0,0.0,3.0,0.0,0.0,4.2,0.0,3.2,2.7,0.0,5.0,0.0,0.0,42.0,4.0,0.0,4.0,7.6,3.3,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13055555555555556,0.13055555555555556,0.2111111111111111,0.0,10.0,9.0,3.0,2.0,,#1WL-C,1.0,20.0,1.05,5.0,0.0,0.0,0.0,6.05,2.1,0.0,1.9,5.0,0.0,0.0,16.0,9.0,8.9,5.0,7.9,11.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14907407407407408,0.14907407407407408,0.3037037037037037,5,0
|
11651.0,Sean Lawrence,1998 Season,All-Star,L,0.0,0.0,3.0,0.0,0.0,4.2,0.0,3.2,2.7,0.0,5.0,0.0,0.0,42.0,4.0,0.0,4.0,7.6,3.3,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13055555555555556,0.13055555555555556,0.2111111111111111,0.0,10.0,9.0,3.0,2.0,,#1WL-C,1.0,20.0,1.05,5.0,0.0,0.0,0.0,6.05,2.1,0.0,1.9,5.0,0.0,0.0,16.0,9.0,8.9,5.0,7.9,11.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14907407407407408,0.14907407407407408,0.3037037037037037,5,0
|
||||||
11652.0,Valerio de los Santos,1998 Season,Hall of Fame,L,0.0,0.0,0.0,0.0,0.0,7.75,0.0,1.95,1.9,0.0,0.0,0.0,0.0,31.0,9.0,2.0,4.0,21.3,0.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10740740740740741,0.10740740740740741,0.17916666666666667,0.0,9.0,9.0,1.0,2.0,,#1WL-C,1.0,20.0,1.8,1.0,0.0,0.0,0.0,0.0,0.0,1.9,0.0,0.0,0.0,0.0,42.0,5.0,8.2,5.0,9.0,5.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.03888888888888889,0.03888888888888889,0.10277777777777777,5,0
|
11652.0,Valerio de los Santos,1998 Season,Hall of Fame,L,0.0,0.0,0.0,0.0,0.0,7.75,0.0,1.95,1.9,0.0,0.0,0.0,0.0,31.0,9.0,2.0,4.0,21.3,0.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10740740740740741,0.10740740740740741,0.17916666666666667,0.0,9.0,9.0,1.0,2.0,,#1WL-C,1.0,20.0,1.8,1.0,0.0,0.0,0.0,0.0,0.0,1.9,0.0,0.0,0.0,0.0,42.0,5.0,8.2,5.0,9.0,5.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.03888888888888889,0.03888888888888889,0.10277777777777777,5,0
|
||||||
11653.0,Jim Abbott,1998 Season,Starter,L,0.0,2.5,1.0,0.0,0.0,6.45,0.0,9.1,9.1,0.0,5.0,0.0,0.0,0.0,1.7,4.5,0.0,14.0,25.65,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2791666666666667,0.2791666666666667,0.4222222222222222,0.0,0.0,3.0,6.0,1.0,,#1WL-C,1.0,20.0,0.85,0.0,0.0,0.0,2.75,0.0,4.75,4.75,0.0,5.0,0.0,0.0,21.95,1.25,6.0,0.0,20.1,11.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14444444444444443,0.14444444444444443,0.1935185185185185,1,0
|
11653.0,Jim Abbott,1998 Season,Starter,L,0.0,2.5,1.0,0.0,0.0,6.4,0.0,9.1,9.1,0.0,5.0,0.0,0.0,4.0,7.0,2.5,4.0,15.5,12.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.27870370370370373,0.27870370370370373,0.4212962962962963,0.0,0.0,3.0,6.0,1.0,,#1WL-C,1.0,20.0,0.0,0.0,0.0,0.0,3.6,0.0,4.75,4.75,0.0,5.0,0.0,0.0,29.0,5.0,0.0,4.0,17.65,5.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14444444444444443,0.14444444444444443,0.17777777777777778,1,0
|
||||||
11654.0,Jose Jimenez,1998 Season,Hall of Fame,R,0.0,0.0,0.0,0.0,0.0,2.4,0.0,7.85,7.8,0.0,5.0,0.0,0.0,19.0,0.0,7.0,6.0,18.75,5.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19027777777777777,0.19027777777777777,0.2125,0.0,0.0,9.0,5.0,4.0,,#1WR-C,1.0,20.0,0.0,0.0,0.0,0.0,3.4,0.0,2.7,2.75,0.0,5.0,0.0,0.0,30.0,4.0,3.0,0.0,21.9,6.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1050925925925926,0.1050925925925926,0.13657407407407407,3,0
|
11654.0,Jose Jimenez,1998 Season,Hall of Fame,R,0.0,0.0,0.0,0.0,0.0,2.4,0.0,7.85,7.8,0.0,5.0,0.0,0.0,19.0,0.0,7.0,6.0,18.75,5.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19027777777777777,0.19027777777777777,0.2125,0.0,0.0,9.0,5.0,4.0,,#1WR-C,1.0,20.0,0.0,0.0,0.0,0.0,3.4,0.0,2.7,2.75,0.0,5.0,0.0,0.0,30.0,4.0,3.0,0.0,21.9,6.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1050925925925926,0.1050925925925926,0.13657407407407407,3,0
|
||||||
11655.0,Jay Witasick,1998 Season,All-Star,R,0.0,6.4,0.0,0.0,0.0,0.0,3.2,0.0,0.0,1.9,5.0,0.0,0.0,48.0,4.0,1.4,5.0,4.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12962962962962962,0.12962962962962962,0.337037037037037,0.0,15.0,-3.0,4.0,3.0,,#1WR-C,1.0,20.0,6.0,0.0,0.0,0.0,0.0,5.5,5.6,0.0,5.9,5.0,0.0,0.0,28.0,4.0,2.5,4.0,7.4,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2361111111111111,0.2361111111111111,0.4537037037037037,5,0
|
11655.0,Jay Witasick,1998 Season,All-Star,R,0.0,6.4,0.0,0.0,0.0,0.0,3.2,0.0,0.0,1.9,5.0,0.0,0.0,48.0,4.0,1.4,5.0,4.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12962962962962962,0.12962962962962962,0.337037037037037,0.0,15.0,-3.0,4.0,3.0,,#1WR-C,1.0,20.0,6.0,0.0,0.0,0.0,0.0,5.5,5.6,0.0,5.9,5.0,0.0,0.0,28.0,4.0,2.5,4.0,7.4,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2361111111111111,0.2361111111111111,0.4537037037037037,5,0
|
||||||
11661.0,Benj Sampson,1998 Promos,Hall of Fame,L,0.0,0.0,0.0,0.0,0.0,6.0,0.0,0.0,1.6,0.0,5.0,0.0,0.0,51.0,4.0,0.0,4.0,5.0,2.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.09351851851851851,0.09351851851851851,0.14907407407407408,0.0,20.0,9.0,3.0,2.0,,#1WL-C,1.0,21.0,0.0,0.0,0.0,0.0,1.65,0.0,3.15,2.8,0.0,5.0,0.0,0.0,34.0,8.0,12.0,4.0,7.2,1.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.09351851851851851,0.09351851851851851,0.1087962962962963,5,0
|
|
||||||
11657.0,John Smoltz,1998 Promos,Hall of Fame,R,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9,0.0,0.0,0.0,0.0,54.0,4.0,0.0,4.0,14.0,1.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.017592592592592594,0.017592592592592594,0.017592592592592594,2.0,4.0,3.0,6.0,1.0,,#1WR-C,1.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,5.7,5.7,0.0,5.0,0.0,0.0,35.0,0.0,4.0,4.0,16.3,3.3,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1287037037037037,0.1287037037037037,0.1287037037037037,3,0
|
11657.0,John Smoltz,1998 Promos,Hall of Fame,R,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9,0.0,0.0,0.0,0.0,54.0,4.0,0.0,4.0,14.0,1.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.017592592592592594,0.017592592592592594,0.017592592592592594,2.0,4.0,3.0,6.0,1.0,,#1WR-C,1.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,5.7,5.7,0.0,5.0,0.0,0.0,35.0,0.0,4.0,4.0,16.3,3.3,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1287037037037037,0.1287037037037037,0.1287037037037037,3,0
|
||||||
|
11661.0,Benj Sampson,1998 Promos,Hall of Fame,L,0.0,0.0,0.0,0.0,0.0,6.0,0.0,0.0,1.6,0.0,5.0,0.0,0.0,51.0,4.0,0.0,4.0,5.0,2.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.09351851851851851,0.09351851851851851,0.14907407407407408,0.0,20.0,9.0,3.0,2.0,,#1WL-C,1.0,21.0,0.0,0.0,0.0,0.0,1.65,0.0,3.15,2.8,0.0,5.0,0.0,0.0,34.0,8.0,12.0,4.0,7.2,1.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.09351851851851851,0.09351851851851851,0.1087962962962963,5,0
|
||||||
11662.0,Glendon Rusch,1998 Promos,Hall of Fame,L,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,9.0,0.0,5.0,0.0,0.0,39.0,5.0,0.0,4.0,8.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18981481481481483,0.18981481481481483,0.18981481481481483,0.0,1.0,-2.0,5.0,4.0,,#1WL-C,3.0,21.0,5.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9,0.0,0.0,0.0,24.0,4.0,4.6,4.0,5.0,29.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.06759259259259259,0.06759259259259259,0.2175925925925926,3,10
|
11662.0,Glendon Rusch,1998 Promos,Hall of Fame,L,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,9.0,0.0,5.0,0.0,0.0,39.0,5.0,0.0,4.0,8.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18981481481481483,0.18981481481481483,0.18981481481481483,0.0,1.0,-2.0,5.0,4.0,,#1WL-C,3.0,21.0,5.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9,0.0,0.0,0.0,24.0,4.0,4.6,4.0,5.0,29.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.06759259259259259,0.06759259259259259,0.2175925925925926,3,10
|
||||||
11663.0,Juan Acevedo,1998 Promos,Hall of Fame,R,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6,1.5,0.0,5.0,0.0,0.0,23.95,0.0,11.75,7.05,19.7,8.45,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.05185185185185185,0.05185185185185185,0.05185185185185185,0.0,6.0,-5.0,2.0,1.0,3.0,#1WR-C,2.0,21.0,0.0,0.0,0.0,0.0,1.95,0.0,1.2,1.05,0.0,0.0,0.0,0.0,37.95,0.0,8.100000000000001,4.2,16.1,8.45,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.03888888888888889,0.03888888888888889,0.056944444444444436,2,12
|
11663.0,Juan Acevedo,1998 Promos,Hall of Fame,R,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6,1.5,0.0,5.0,0.0,0.0,23.95,0.0,11.75,7.05,19.7,8.45,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.05185185185185185,0.05185185185185185,0.05185185185185185,0.0,6.0,-5.0,2.0,1.0,3.0,#1WR-C,2.0,21.0,0.0,0.0,0.0,0.0,1.95,0.0,1.2,1.05,0.0,0.0,0.0,0.0,37.95,0.0,8.100000000000001,4.2,16.1,8.45,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.03888888888888889,0.03888888888888889,0.056944444444444436,2,12
|
||||||
11848.0,Charlie Morton,2025 Season,Replacement,R,0.0,0.8,3.0,0.0,0.0,0.0,5.1,4.25,0.0,4.2,5.0,0.0,0.0,39.95,0.0,4.75,1.5,1.5,8.95,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1699074074074074,0.1699074074074074,0.2810185185185185,4.0,4.0,-2.0,4.0,3.0,,#1WR-C,1.0,24.0,1.9500000000000002,2.0,0.0,0.0,0.0,5.1,5.9,0.0,5.85,5.0,0.0,0.0,30.95,0.0,5.65,1.35,2.2,13.05,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2064814814814815,0.2064814814814815,0.33564814814814814,3,36
|
11848.0,Charlie Morton,2025 Season,Replacement,R,0.0,0.8,3.0,0.0,0.0,0.0,5.1,4.25,0.0,4.2,5.0,0.0,0.0,39.95,0.0,4.75,1.5,1.5,8.95,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1699074074074074,0.1699074074074074,0.2810185185185185,4.0,4.0,-2.0,4.0,3.0,,#1WR-C,1.0,24.0,1.9500000000000002,2.0,0.0,0.0,0.0,5.1,5.9,0.0,5.85,5.0,0.0,0.0,30.95,0.0,5.65,1.35,2.2,13.05,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2064814814814815,0.2064814814814815,0.33564814814814814,3,36
|
||||||
@ -6172,7 +6172,7 @@ player_id,player_name,cardset_name,rarity,hand,variant,homerun_vl,bp_homerun_vl,
|
|||||||
11850.0,Carlos Carrasco,2025 Season,Replacement,R,0.0,0.0,3.0,0.0,0.0,0.0,5.9,8.0,0.0,8.05,5.0,0.0,0.0,21.0,9.0,0.1,9.0,8.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.24027777777777778,0.24027777777777778,0.3365740740740741,0.0,4.0,9.0,4.0,3.0,,#1WR-C,2.0,24.0,3.75,3.0,0.0,0.0,0.0,10.15,2.5,0.0,2.6,5.0,0.0,0.0,31.0,2.0,7.1,4.0,2.5,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.21296296296296297,0.21296296296296297,0.4527777777777778,3,0
|
11850.0,Carlos Carrasco,2025 Season,Replacement,R,0.0,0.0,3.0,0.0,0.0,0.0,5.9,8.0,0.0,8.05,5.0,0.0,0.0,21.0,9.0,0.1,9.0,8.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.24027777777777778,0.24027777777777778,0.3365740740740741,0.0,4.0,9.0,4.0,3.0,,#1WR-C,2.0,24.0,3.75,3.0,0.0,0.0,0.0,10.15,2.5,0.0,2.6,5.0,0.0,0.0,31.0,2.0,7.1,4.0,2.5,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.21296296296296297,0.21296296296296297,0.4527777777777778,3,0
|
||||||
11851.0,Justin Verlander,2025 Season,Reserve,R,0.0,0.0,2.0,0.0,0.0,0.0,5.75,5.1,0.0,5.1,5.0,0.0,0.0,33.0,4.0,2.25,6.0,4.9,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18009259259259258,0.18009259259259258,0.2611111111111111,0.0,3.0,-2.0,5.0,1.0,,#1WR-C,1.0,24.0,0.0,3.0,0.0,0.0,0.0,6.3,4.3,0.0,4.2,5.0,0.0,0.0,32.0,4.0,2.7,4.0,6.7,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17407407407407408,0.17407407407407408,0.2740740740740741,3,15
|
11851.0,Justin Verlander,2025 Season,Reserve,R,0.0,0.0,2.0,0.0,0.0,0.0,5.75,5.1,0.0,5.1,5.0,0.0,0.0,33.0,4.0,2.25,6.0,4.9,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18009259259259258,0.18009259259259258,0.2611111111111111,0.0,3.0,-2.0,5.0,1.0,,#1WR-C,1.0,24.0,0.0,3.0,0.0,0.0,0.0,6.3,4.3,0.0,4.2,5.0,0.0,0.0,32.0,4.0,2.7,4.0,6.7,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17407407407407408,0.17407407407407408,0.2740740740740741,3,15
|
||||||
11852.0,Nathan Eovaldi,2025 Season,Hall of Fame,R,0.0,0.0,2.0,0.0,0.0,0.0,3.95,2.75,0.0,2.7,5.0,0.0,0.0,33.0,4.0,1.05,10.0,11.25,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11944444444444445,0.11944444444444445,0.1837962962962963,0.0,9.0,3.0,6.0,1.0,,#1WR-C,2.0,24.0,0.0,1.0,0.0,0.0,0.0,3.7,2.5,0.0,2.5,5.0,0.0,0.0,36.0,4.0,0.3,5.0,6.5,10.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10833333333333334,0.10833333333333334,0.15648148148148147,2,8
|
11852.0,Nathan Eovaldi,2025 Season,Hall of Fame,R,0.0,0.0,2.0,0.0,0.0,0.0,3.95,2.75,0.0,2.7,5.0,0.0,0.0,33.0,4.0,1.05,10.0,11.25,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11944444444444445,0.11944444444444445,0.1837962962962963,0.0,9.0,3.0,6.0,1.0,,#1WR-C,2.0,24.0,0.0,1.0,0.0,0.0,0.0,3.7,2.5,0.0,2.5,5.0,0.0,0.0,36.0,4.0,0.3,5.0,6.5,10.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10833333333333334,0.10833333333333334,0.15648148148148147,2,8
|
||||||
11853.0,Patrick Corbin,2025 Season,Reserve,L,0.0,0.65,2.0,0.0,0.0,0.0,4.2,4.2,0.0,3.9,5.0,0.0,0.0,30.95,1.95,7.1499999999999995,0.0,1.95,17.05,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15231481481481485,0.15231481481481485,0.23703703703703702,0.0,8.0,5.0,5.0,1.0,,#1WL-C,3.0,24.0,0.7,3.0,0.0,0.0,0.0,4.5,5.7,0.0,5.75,5.0,0.0,0.0,28.95,2.1,7.700000000000001,0.0,2.1,13.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19120370370370368,0.19120370370370368,0.29398148148148145,4,12
|
11853.0,Patrick Corbin,2025 Season,Reserve,L,0.0,0.0,2.0,0.0,0.0,0.0,4.85,4.2,0.0,3.9,5.0,0.0,0.0,33.0,10.0,0.15,4.0,9.8,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15231481481481482,0.15231481481481482,0.225,0.0,8.0,5.0,5.0,1.0,,#1WL-C,3.0,24.0,0.0,3.0,0.0,0.0,0.0,5.2,5.7,0.0,5.6,5.0,0.0,0.0,32.0,7.0,1.8,4.0,7.3,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18981481481481483,0.18981481481481483,0.2796296296296296,4,12
|
||||||
11854.0,Miles Mikolas,2025 Season,Replacement,R,0.0,0.95,4.0,0.0,0.0,0.0,5.4,4.2,0.0,4.2,5.0,0.0,0.0,20.95,0.0,12.5,3.2,3.25,15.35,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17824074074074073,0.17824074074074073,0.3101851851851852,0.0,1.0,0.0,5.0,1.0,,#1WR-C,3.0,24.0,1.3,3.0,0.0,0.0,0.0,6.45,4.2,0.0,4.2,5.0,0.0,0.0,21.95,0.0,9.600000000000001,3.2,4.2,15.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18657407407407406,0.18657407407407406,0.32407407407407407,4,7
|
11854.0,Miles Mikolas,2025 Season,Replacement,R,0.0,0.95,4.0,0.0,0.0,0.0,5.4,4.2,0.0,4.2,5.0,0.0,0.0,20.95,0.0,12.5,3.2,3.25,15.35,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17824074074074073,0.17824074074074073,0.3101851851851852,0.0,1.0,0.0,5.0,1.0,,#1WR-C,3.0,24.0,1.3,3.0,0.0,0.0,0.0,6.45,4.2,0.0,4.2,5.0,0.0,0.0,21.95,0.0,9.600000000000001,3.2,4.2,15.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18657407407407406,0.18657407407407406,0.32407407407407407,4,7
|
||||||
11855.0,Zack Wheeler,2025 Season,MVP,R,0.0,0.0,3.0,0.0,0.0,0.0,4.25,1.75,0.0,1.5,5.0,0.0,0.0,45.0,4.0,0.75,6.0,7.25,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10648148148148148,0.10648148148148148,0.1875,0.0,3.0,-3.0,6.0,1.0,,#1WR-C,2.0,24.0,0.0,2.0,0.0,0.0,0.0,2.75,3.3,0.0,3.4,5.0,0.0,0.0,35.0,5.0,2.25,5.0,6.7,8.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11990740740740741,0.11990740740740741,0.17314814814814813,1,15
|
11855.0,Zack Wheeler,2025 Season,MVP,R,0.0,0.0,3.0,0.0,0.0,0.0,4.25,1.75,0.0,1.5,5.0,0.0,0.0,45.0,4.0,0.75,6.0,7.25,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10648148148148148,0.10648148148148148,0.1875,0.0,3.0,-3.0,6.0,1.0,,#1WR-C,2.0,24.0,0.0,2.0,0.0,0.0,0.0,2.75,3.3,0.0,3.4,5.0,0.0,0.0,35.0,5.0,2.25,5.0,6.7,8.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11990740740740741,0.11990740740740741,0.17314814814814813,1,15
|
||||||
11856.0,Chris Sale,2025 Season,MVP,L,0.0,0.0,1.0,3.0,0.0,0.0,0.0,0.0,3.2,0.0,5.0,0.0,0.0,47.0,4.0,0.0,2.0,5.0,8.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.08518518518518518,0.08518518518518518,0.15462962962962962,0.0,5.0,0.0,6.0,1.0,,#1WL-C,1.0,24.0,0.0,2.0,0.0,0.0,0.0,3.55,4.75,0.0,4.5,5.0,0.0,0.0,45.0,4.0,0.45,0.0,4.25,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15092592592592594,0.15092592592592594,0.21157407407407408,4,14
|
11856.0,Chris Sale,2025 Season,MVP,L,0.0,0.0,1.0,3.0,0.0,0.0,0.0,0.0,3.2,0.0,5.0,0.0,0.0,47.0,4.0,0.0,2.0,5.0,8.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.08518518518518518,0.08518518518518518,0.15462962962962962,0.0,5.0,0.0,6.0,1.0,,#1WL-C,1.0,24.0,0.0,2.0,0.0,0.0,0.0,3.55,4.75,0.0,4.5,5.0,0.0,0.0,45.0,4.0,0.45,0.0,4.25,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15092592592592594,0.15092592592592594,0.21157407407407408,4,14
|
||||||
@ -6190,7 +6190,7 @@ player_id,player_name,cardset_name,rarity,hand,variant,homerun_vl,bp_homerun_vl,
|
|||||||
11868.0,Tyler Anderson,2025 Season,Replacement,L,0.0,2.05,5.0,0.0,0.0,0.0,7.05,4.2,0.0,3.9,5.0,0.0,0.0,26.0,8.0,8.9,0.0,1.8,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20555555555555555,0.20555555555555555,0.3972222222222222,6.0,7.0,8.0,5.0,1.0,,#1WL-C,2.0,24.0,0.0,3.0,0.0,0.0,0.0,4.9,3.4,0.0,3.4,5.0,0.0,0.0,31.0,5.0,12.1,0.0,4.6,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14537037037037037,0.14537037037037037,0.2324074074074074,2,0
|
11868.0,Tyler Anderson,2025 Season,Replacement,L,0.0,2.05,5.0,0.0,0.0,0.0,7.05,4.2,0.0,3.9,5.0,0.0,0.0,26.0,8.0,8.9,0.0,1.8,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20555555555555555,0.20555555555555555,0.3972222222222222,6.0,7.0,8.0,5.0,1.0,,#1WL-C,2.0,24.0,0.0,3.0,0.0,0.0,0.0,4.9,3.4,0.0,3.4,5.0,0.0,0.0,31.0,5.0,12.1,0.0,4.6,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14537037037037037,0.14537037037037037,0.2324074074074074,2,0
|
||||||
11869.0,Joe Ross,2025 Season,Replacement,R,0.0,1.4,3.0,0.0,0.0,0.0,8.1,3.8,0.0,3.8,5.0,0.0,0.0,25.0,4.0,2.5,6.0,5.2,11.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19537037037037036,0.19537037037037036,0.3509259259259259,0.0,0.0,-5.0,1.0,1.0,,#1WR-C,1.0,24.0,0.0,3.0,0.0,0.0,0.0,7.5,4.8,0.0,4.75,5.0,0.0,0.0,31.0,4.0,0.5,11.0,7.2,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19490740740740742,0.19490740740740742,0.3060185185185185,4,0
|
11869.0,Joe Ross,2025 Season,Replacement,R,0.0,1.4,3.0,0.0,0.0,0.0,8.1,3.8,0.0,3.8,5.0,0.0,0.0,25.0,4.0,2.5,6.0,5.2,11.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19537037037037036,0.19537037037037036,0.3509259259259259,0.0,0.0,-5.0,1.0,1.0,,#1WR-C,1.0,24.0,0.0,3.0,0.0,0.0,0.0,7.5,4.8,0.0,4.75,5.0,0.0,0.0,31.0,4.0,0.5,11.0,7.2,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19490740740740742,0.19490740740740742,0.3060185185185185,4,0
|
||||||
11870.0,Eduardo Rodriguez,2025 Season,Replacement,L,0.0,1.05,2.0,0.0,0.0,0.0,7.05,6.1,0.0,6.1,5.0,0.0,0.0,21.0,9.0,5.9,4.0,7.9,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.22037037037037038,0.22037037037037038,0.3425925925925926,2.0,5.0,3.0,5.0,1.0,,#1WL-C,3.0,24.0,0.0,3.0,0.0,0.0,0.0,5.8,5.7,0.0,5.4,5.0,0.0,0.0,27.0,9.0,1.2,5.0,7.3,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1935185185185185,0.1935185185185185,0.28888888888888886,4,0
|
11870.0,Eduardo Rodriguez,2025 Season,Replacement,L,0.0,1.05,2.0,0.0,0.0,0.0,7.05,6.1,0.0,6.1,5.0,0.0,0.0,21.0,9.0,5.9,4.0,7.9,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.22037037037037038,0.22037037037037038,0.3425925925925926,2.0,5.0,3.0,5.0,1.0,,#1WL-C,3.0,24.0,0.0,3.0,0.0,0.0,0.0,5.8,5.7,0.0,5.4,5.0,0.0,0.0,27.0,9.0,1.2,5.0,7.3,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1935185185185185,0.1935185185185185,0.28888888888888886,4,0
|
||||||
11871.0,Steven Matz,2025 Season,Reserve,L,0.0,1.15,2.0,0.0,0.0,0.0,2.2,3.6,0.0,3.5,5.0,0.0,0.0,24.95,3.2,7.249999999999999,0.0,3.9,22.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12916666666666665,0.12916666666666665,0.20925925925925928,0.0,8.0,-3.0,1.0,1.0,,#1WL-C,3.0,24.0,1.1,2.0,0.0,0.0,0.0,5.1,5.7,0.0,5.4,5.0,0.0,0.0,27.95,3.2,7.2,0.0,2.7,13.65,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19259259259259257,0.19259259259259257,0.29814814814814816,3,0
|
11871.0,Steven Matz,2025 Season,Reserve,L,0.0,1.1,2.0,0.0,0.0,0.0,2.25,3.6,0.0,3.5,5.0,0.0,0.0,27.0,4.0,3.65,4.0,5.4,16.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12916666666666668,0.12916666666666668,0.20833333333333334,0.0,8.0,-3.0,1.0,1.0,,#1WL-C,3.0,24.0,1.1,2.0,0.0,0.0,0.0,5.1,5.7,0.0,5.4,5.0,0.0,0.0,31.0,5.0,6.8,4.0,7.3,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1925925925925926,0.1925925925925926,0.29814814814814816,3,0
|
||||||
11872.0,Clay Holmes,2025 Season,Starter,R,0.0,0.4,2.0,0.0,0.0,0.0,3.75,3.75,0.0,3.75,5.0,0.0,0.0,26.95,0.0,7.05,2.2,3.75,20.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14027777777777778,0.14027777777777778,0.2138888888888889,2.0,7.0,-2.0,5.0,1.0,,#1WR-C,1.0,24.0,0.4,1.0,0.0,0.0,0.0,3.25,6.55,0.0,6.55,5.0,0.0,0.0,27.95,0.0,7.35,0.0,3.2,17.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18287037037037038,0.18287037037037038,0.23796296296296296,1,8
|
11872.0,Clay Holmes,2025 Season,Starter,R,0.0,0.4,2.0,0.0,0.0,0.0,3.75,3.75,0.0,3.75,5.0,0.0,0.0,26.95,0.0,7.05,2.2,3.75,20.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14027777777777778,0.14027777777777778,0.2138888888888889,2.0,7.0,-2.0,5.0,1.0,,#1WR-C,1.0,24.0,0.4,1.0,0.0,0.0,0.0,3.25,6.55,0.0,6.55,5.0,0.0,0.0,27.95,0.0,7.35,0.0,3.2,17.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18287037037037038,0.18287037037037038,0.23796296296296296,1,8
|
||||||
11873.0,Max Fried,2025 Season,All-Star,L,0.0,3.75,2.0,0.0,0.0,0.0,0.0,3.2,0.0,3.2,5.0,0.0,0.0,45.95,1.2,4.2,0.0,1.95,8.55,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12638888888888888,0.12638888888888888,0.2583333333333333,1.0,8.0,-3.0,6.0,1.0,,#1WL-C,3.0,24.0,0.0,1.0,0.0,0.0,4.05,0.0,4.5,4.5,0.0,5.0,0.0,0.0,31.95,1.7,6.3,0.0,4.5,15.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1486111111111111,0.1486111111111111,0.2,1,22
|
11873.0,Max Fried,2025 Season,All-Star,L,0.0,3.75,2.0,0.0,0.0,0.0,0.0,3.2,0.0,3.2,5.0,0.0,0.0,45.95,1.2,4.2,0.0,1.95,8.55,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12638888888888888,0.12638888888888888,0.2583333333333333,1.0,8.0,-3.0,6.0,1.0,,#1WL-C,3.0,24.0,0.0,1.0,0.0,0.0,4.05,0.0,4.5,4.5,0.0,5.0,0.0,0.0,31.95,1.7,6.3,0.0,4.5,15.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1486111111111111,0.1486111111111111,0.2,1,22
|
||||||
11874.0,Michael Wacha,2025 Season,Starter,R,0.0,0.0,2.0,0.0,0.0,0.0,3.25,5.4,0.0,5.4,5.0,0.0,0.0,24.95,0.0,11.45,3.4,3.25,14.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1625,0.1625,0.22037037037037038,0.0,2.0,9.0,6.0,1.0,,#1WR-C,3.0,24.0,1.3,2.0,0.0,0.0,0.0,4.2,5.1,0.0,5.1,5.0,0.0,0.0,26.95,0.0,8.8,3.2,2.75,14.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17777777777777778,0.17777777777777778,0.2805555555555556,3,0
|
11874.0,Michael Wacha,2025 Season,Starter,R,0.0,0.0,2.0,0.0,0.0,0.0,3.25,5.4,0.0,5.4,5.0,0.0,0.0,24.95,0.0,11.45,3.4,3.25,14.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1625,0.1625,0.22037037037037038,0.0,2.0,9.0,6.0,1.0,,#1WR-C,3.0,24.0,1.3,2.0,0.0,0.0,0.0,4.2,5.1,0.0,5.1,5.0,0.0,0.0,26.95,0.0,8.8,3.2,2.75,14.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17777777777777778,0.17777777777777778,0.2805555555555556,3,0
|
||||||
@ -6209,7 +6209,7 @@ player_id,player_name,cardset_name,rarity,hand,variant,homerun_vl,bp_homerun_vl,
|
|||||||
11887.0,Carlos Rodon,2025 Season,Hall of Fame,L,0.0,0.0,2.0,0.0,0.0,1.35,0.0,2.65,2.75,0.0,5.0,0.0,0.0,45.0,5.0,0.0,4.0,9.0,2.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.09490740740740741,0.09490740740740741,0.13518518518518519,0.0,4.0,5.0,6.0,1.0,,#1WL-C,3.0,24.0,0.0,2.0,0.0,0.0,0.0,4.1,2.1,0.0,2.1,5.0,0.0,0.0,33.0,9.0,0.9,9.0,7.9,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10925925925925926,0.10925925925925926,0.175,4,0
|
11887.0,Carlos Rodon,2025 Season,Hall of Fame,L,0.0,0.0,2.0,0.0,0.0,1.35,0.0,2.65,2.75,0.0,5.0,0.0,0.0,45.0,5.0,0.0,4.0,9.0,2.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.09490740740740741,0.09490740740740741,0.13518518518518519,0.0,4.0,5.0,6.0,1.0,,#1WL-C,3.0,24.0,0.0,2.0,0.0,0.0,0.0,4.1,2.1,0.0,2.1,5.0,0.0,0.0,33.0,9.0,0.9,9.0,7.9,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10925925925925926,0.10925925925925926,0.175,4,0
|
||||||
11888.0,Aaron Nola,2025 Season,Replacement,R,0.0,4.15,2.0,0.0,0.0,0.0,4.2,4.2,0.0,4.2,5.0,0.0,0.0,32.95,0.0,7.699999999999999,1.9,1.9,10.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1875,0.1875,0.3694444444444445,0.0,2.0,-2.0,6.0,1.0,,#1WR-C,1.0,24.0,0.95,2.0,0.0,0.0,4.75,0.0,5.1,5.1,0.0,5.0,0.0,0.0,38.95,0.0,4.5,0.0,2.8,9.85,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1796296296296296,0.1796296296296296,0.2777777777777778,3,0
|
11888.0,Aaron Nola,2025 Season,Replacement,R,0.0,4.15,2.0,0.0,0.0,0.0,4.2,4.2,0.0,4.2,5.0,0.0,0.0,32.95,0.0,7.699999999999999,1.9,1.9,10.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1875,0.1875,0.3694444444444445,0.0,2.0,-2.0,6.0,1.0,,#1WR-C,1.0,24.0,0.95,2.0,0.0,0.0,4.75,0.0,5.1,5.1,0.0,5.0,0.0,0.0,38.95,0.0,4.5,0.0,2.8,9.85,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1796296296296296,0.1796296296296296,0.2777777777777778,3,0
|
||||||
11889.0,Kyle Freeland,2025 Season,Replacement,L,0.0,0.0,2.0,0.0,0.0,0.0,5.05,5.8,0.0,5.9,5.0,0.0,0.0,28.0,6.0,5.95,4.0,6.2,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1875,0.1875,0.262037037037037,0.0,2.0,-1.0,5.0,1.0,,#1WL-C,3.0,24.0,0.0,3.0,0.0,0.0,0.0,5.6,6.75,0.0,6.6,5.0,0.0,0.0,23.0,5.0,1.4,0.0,7.25,14.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2125,0.2125,0.3060185185185185,3,51
|
11889.0,Kyle Freeland,2025 Season,Replacement,L,0.0,0.0,2.0,0.0,0.0,0.0,5.05,5.8,0.0,5.9,5.0,0.0,0.0,28.0,6.0,5.95,4.0,6.2,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1875,0.1875,0.262037037037037,0.0,2.0,-1.0,5.0,1.0,,#1WL-C,3.0,24.0,0.0,3.0,0.0,0.0,0.0,5.6,6.75,0.0,6.6,5.0,0.0,0.0,23.0,5.0,1.4,0.0,7.25,14.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2125,0.2125,0.3060185185185185,3,51
|
||||||
11890.0,Tyler Mahle,2025 Season,MVP,R,0.0,0.0,2.0,0.0,0.0,0.0,2.7,2.25,0.0,2.25,5.0,0.0,0.0,33.95,0.0,11.399999999999999,2.7,3.2,13.55,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.09907407407407406,0.09907407407407406,0.15185185185185185,3.0,0.0,-1.0,5.0,1.0,,#1WR-C,2.0,24.0,0.0,1.0,0.0,0.0,0.0,3.9,5.85,0.0,5.85,5.0,0.0,0.0,23.95,0.0,8.7,3.75,3.2,17.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17222222222222225,0.17222222222222225,0.2222222222222222,1,0
|
11890.0,Tyler Mahle,2025 Season,MVP,R,0.0,0.0,2.0,0.0,0.0,0.0,2.7,2.25,0.0,2.25,5.0,0.0,0.0,36.0,4.0,5.3,4.0,6.75,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.09907407407407408,0.09907407407407408,0.15185185185185185,3.0,0.0,-1.0,5.0,1.0,,#1WR-C,2.0,24.0,0.0,1.0,0.0,0.0,0.0,3.9,5.8,0.0,5.9,5.0,0.0,0.0,26.0,4.0,2.1,9.0,5.2,11.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17222222222222222,0.17222222222222222,0.2222222222222222,1,0
|
||||||
11891.0,Grant Holmes,2025 Season,Starter,R,0.0,1.1,2.0,0.0,0.0,0.0,3.75,4.2,0.0,4.2,5.0,0.0,0.0,33.0,4.0,0.15,9.0,10.8,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1550925925925926,0.1550925925925926,0.24814814814814815,0.0,9.0,-1.0,5.0,1.0,,#1WR-C,3.0,24.0,2.55,1.0,0.0,0.0,0.0,2.05,4.5,0.0,4.5,5.0,0.0,0.0,39.0,4.0,2.4,4.0,9.5,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1537037037037037,0.1537037037037037,0.2574074074074074,2,10
|
11891.0,Grant Holmes,2025 Season,Starter,R,0.0,1.1,2.0,0.0,0.0,0.0,3.75,4.2,0.0,4.2,5.0,0.0,0.0,33.0,4.0,0.15,9.0,10.8,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1550925925925926,0.1550925925925926,0.24814814814814815,0.0,9.0,-1.0,5.0,1.0,,#1WR-C,3.0,24.0,2.55,1.0,0.0,0.0,0.0,2.05,4.5,0.0,4.5,5.0,0.0,0.0,39.0,4.0,2.4,4.0,9.5,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1537037037037037,0.1537037037037037,0.2574074074074074,2,10
|
||||||
11892.0,Trevor Williams,2025 Season,Replacement,R,0.0,1.25,4.0,0.0,0.0,0.0,5.7,10.2,0.0,7.0,5.0,0.0,0.0,22.0,5.0,1.05,6.0,6.8,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2652777777777778,0.2652777777777778,0.4083333333333333,0.0,2.0,0.0,5.0,1.0,,#1WR-C,3.0,24.0,0.0,2.0,0.0,0.0,0.0,3.8,3.75,0.0,3.75,5.0,0.0,0.0,29.0,0.0,8.2,5.0,3.25,14.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13703703703703704,0.13703703703703704,0.2,3,0
|
11892.0,Trevor Williams,2025 Season,Replacement,R,0.0,1.25,4.0,0.0,0.0,0.0,5.7,10.2,0.0,7.0,5.0,0.0,0.0,22.0,5.0,1.05,6.0,6.8,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2652777777777778,0.2652777777777778,0.4083333333333333,0.0,2.0,0.0,5.0,1.0,,#1WR-C,3.0,24.0,0.0,2.0,0.0,0.0,0.0,3.8,3.75,0.0,3.75,5.0,0.0,0.0,29.0,0.0,8.2,5.0,3.25,14.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13703703703703704,0.13703703703703704,0.2,3,0
|
||||||
11893.0,Pablo Lopez,2025 Season,All-Star,R,0.0,0.0,2.0,0.0,0.0,0.0,3.4,6.8,0.0,6.75,5.0,0.0,0.0,33.0,4.0,0.6,5.0,5.2,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18935185185185185,0.18935185185185185,0.24861111111111112,8.0,3.0,4.0,5.0,1.0,,#1WR-C,1.0,24.0,0.0,2.0,0.0,0.0,0.0,4.2,0.0,0.0,1.2,5.0,0.0,0.0,43.0,0.0,8.8,7.0,0.0,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.0824074074074074,0.0824074074074074,0.14907407407407408,3,51
|
11893.0,Pablo Lopez,2025 Season,All-Star,R,0.0,0.0,2.0,0.0,0.0,0.0,3.4,6.8,0.0,6.75,5.0,0.0,0.0,33.0,4.0,0.6,5.0,5.2,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18935185185185185,0.18935185185185185,0.24861111111111112,8.0,3.0,4.0,5.0,1.0,,#1WR-C,1.0,24.0,0.0,2.0,0.0,0.0,0.0,4.2,0.0,0.0,1.2,5.0,0.0,0.0,43.0,0.0,8.8,7.0,0.0,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.0824074074074074,0.0824074074074074,0.14907407407407408,3,51
|
||||||
@ -6232,7 +6232,7 @@ player_id,player_name,cardset_name,rarity,hand,variant,homerun_vl,bp_homerun_vl,
|
|||||||
11910.0,Ronel Blanco,2025 Season,Starter,R,0.0,4.25,3.0,0.0,0.0,0.0,2.6,2.4,0.0,2.4,5.0,0.0,0.0,27.0,1.0,7.15,9.0,5.6,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1449074074074074,0.1449074074074074,0.3287037037037037,0.0,0.0,4.0,5.0,1.0,,#1WR-C,3.0,24.0,0.0,0.0,0.0,0.0,6.0,0.0,2.4,2.4,0.0,5.0,0.0,0.0,49.0,2.0,0.0,5.0,5.6,1.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12314814814814815,0.12314814814814815,0.1787037037037037,4,0
|
11910.0,Ronel Blanco,2025 Season,Starter,R,0.0,4.25,3.0,0.0,0.0,0.0,2.6,2.4,0.0,2.4,5.0,0.0,0.0,27.0,1.0,7.15,9.0,5.6,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1449074074074074,0.1449074074074074,0.3287037037037037,0.0,0.0,4.0,5.0,1.0,,#1WR-C,3.0,24.0,0.0,0.0,0.0,0.0,6.0,0.0,2.4,2.4,0.0,5.0,0.0,0.0,49.0,2.0,0.0,5.0,5.6,1.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12314814814814815,0.12314814814814815,0.1787037037037037,4,0
|
||||||
11911.0,Cionel Perez,2025 Season,Replacement,L,0.0,0.0,0.0,0.0,0.0,0.0,5.4,6.5,0.0,6.5,5.0,0.0,0.0,33.0,4.0,5.6,0.0,5.5,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1935185185185185,0.1935185185185185,0.24351851851851852,14.0,9.0,9.0,1.0,1.0,,#1WL-C,1.0,24.0,5.5,0.0,0.0,0.0,0.0,6.75,8.0,0.0,8.05,5.0,0.0,0.0,30.0,4.0,1.75,0.0,4.0,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2851851851851852,0.2851851851851852,0.500462962962963,2,0
|
11911.0,Cionel Perez,2025 Season,Replacement,L,0.0,0.0,0.0,0.0,0.0,0.0,5.4,6.5,0.0,6.5,5.0,0.0,0.0,33.0,4.0,5.6,0.0,5.5,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1935185185185185,0.1935185185185185,0.24351851851851852,14.0,9.0,9.0,1.0,1.0,,#1WL-C,1.0,24.0,5.5,0.0,0.0,0.0,0.0,6.75,8.0,0.0,8.05,5.0,0.0,0.0,30.0,4.0,1.75,0.0,4.0,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2851851851851852,0.2851851851851852,0.500462962962963,2,0
|
||||||
11912.0,Jordan Hicks,2025 Season,Replacement,R,0.0,0.0,2.0,0.0,0.0,0.0,6.4,7.4,0.0,7.4,5.0,0.0,0.0,31.0,5.0,0.6,5.0,5.6,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.22870370370370371,0.22870370370370371,0.31574074074074077,0.0,20.0,0.0,2.0,1.0,1.0,#1WR-C,3.0,24.0,0.0,3.0,0.0,0.0,0.0,4.7,6.4,0.0,6.4,5.0,0.0,0.0,32.0,4.0,4.3,6.0,5.6,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19907407407407407,0.19907407407407407,0.28425925925925927,4,0
|
11912.0,Jordan Hicks,2025 Season,Replacement,R,0.0,0.0,2.0,0.0,0.0,0.0,6.4,7.4,0.0,7.4,5.0,0.0,0.0,31.0,5.0,0.6,5.0,5.6,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.22870370370370371,0.22870370370370371,0.31574074074074077,0.0,20.0,0.0,2.0,1.0,1.0,#1WR-C,3.0,24.0,0.0,3.0,0.0,0.0,0.0,4.7,6.4,0.0,6.4,5.0,0.0,0.0,32.0,4.0,4.3,6.0,5.6,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19907407407407407,0.19907407407407407,0.28425925925925927,4,0
|
||||||
11913.0,Kyle Hart,2025 Season,Starter,L,0.0,0.0,2.0,0.0,0.0,0.0,2.8,0.0,0.0,5.7,5.0,0.0,0.0,32.95,4.75,12.149999999999999,0.0,2.4,11.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1111111111111111,0.1111111111111111,0.16481481481481483,7.0,0.0,-3.0,2.0,1.0,,#1WL-C,1.0,24.0,1.9,4.0,0.0,0.0,0.0,4.8,3.2,0.0,3.2,5.0,0.0,0.0,28.95,3.4,12.2,0.0,2.4,9.95,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16296296296296295,0.16296296296296295,0.3157407407407407,2,0
|
11913.0,Kyle Hart,2025 Season,Starter,L,0.0,0.0,2.0,0.0,0.0,0.0,2.8,0.0,0.0,5.7,5.0,0.0,0.0,38.0,8.0,9.2,0.0,0.0,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1111111111111111,0.1111111111111111,0.1648148148148148,7.0,0.0,-3.0,2.0,1.0,,#1WL-C,1.0,24.0,1.9,4.0,0.0,0.0,0.0,4.8,3.2,0.0,3.2,5.0,0.0,0.0,33.0,5.0,11.3,0.0,6.8,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16296296296296298,0.16296296296296298,0.31574074074074077,2,0
|
||||||
11914.0,Dustin May,2025 Season,Replacement,R,0.0,3.8,2.0,0.0,0.0,0.0,3.9,4.2,0.0,3.9,5.0,0.0,0.0,43.0,0.0,4.3,5.0,1.8,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1787037037037037,0.1787037037037037,0.34814814814814815,0.0,2.0,0.0,5.0,1.0,,#1WR-C,2.0,24.0,0.0,2.0,0.0,0.0,0.0,4.1,5.6,0.0,5.5,5.0,0.0,0.0,27.0,4.0,0.9,6.0,8.4,10.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17314814814814813,0.17314814814814813,0.2388888888888889,4,20
|
11914.0,Dustin May,2025 Season,Replacement,R,0.0,3.8,2.0,0.0,0.0,0.0,3.9,4.2,0.0,3.9,5.0,0.0,0.0,43.0,0.0,4.3,5.0,1.8,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1787037037037037,0.1787037037037037,0.34814814814814815,0.0,2.0,0.0,5.0,1.0,,#1WR-C,2.0,24.0,0.0,2.0,0.0,0.0,0.0,4.1,5.6,0.0,5.5,5.0,0.0,0.0,27.0,4.0,0.9,6.0,8.4,10.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17314814814814813,0.17314814814814813,0.2388888888888889,4,20
|
||||||
11915.0,Mike King,2025 Season,All-Star,R,0.0,0.0,3.0,0.0,0.0,4.5,0.0,3.9,3.8,0.0,5.0,0.0,0.0,44.0,4.0,0.0,6.0,4.6,0.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15,0.15,0.23333333333333334,0.0,5.0,-5.0,5.0,1.0,,#1WR-C,2.0,24.0,0.0,3.0,0.0,0.0,3.7,0.0,3.3,2.5,0.0,5.0,0.0,0.0,36.0,0.0,9.0,2.0,7.0,7.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.125,0.125,0.20092592592592592,3,0
|
11915.0,Mike King,2025 Season,All-Star,R,0.0,0.0,3.0,0.0,0.0,4.5,0.0,3.9,3.8,0.0,5.0,0.0,0.0,44.0,4.0,0.0,6.0,4.6,0.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15,0.15,0.23333333333333334,0.0,5.0,-5.0,5.0,1.0,,#1WR-C,2.0,24.0,0.0,3.0,0.0,0.0,3.7,0.0,3.3,2.5,0.0,5.0,0.0,0.0,36.0,0.0,9.0,2.0,7.0,7.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.125,0.125,0.20092592592592592,3,0
|
||||||
11916.0,Griffin Canning,2025 Season,Starter,R,0.0,0.7,2.0,0.0,0.0,0.0,2.4,5.7,0.0,5.1,5.0,0.0,0.0,36.95,0.0,6.15,1.35,1.9,11.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1611111111111111,0.1611111111111111,0.23055555555555554,0.0,8.0,0.0,5.0,1.0,,#1WR-C,3.0,24.0,0.3,2.0,0.0,0.0,0.0,3.75,4.5,0.0,4.5,5.0,0.0,0.0,27.95,0.0,6.55,2.2,3.25,19.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15324074074074076,0.15324074074074076,0.22407407407407406,2,0
|
11916.0,Griffin Canning,2025 Season,Starter,R,0.0,0.7,2.0,0.0,0.0,0.0,2.4,5.7,0.0,5.1,5.0,0.0,0.0,36.95,0.0,6.15,1.35,1.9,11.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1611111111111111,0.1611111111111111,0.23055555555555554,0.0,8.0,0.0,5.0,1.0,,#1WR-C,3.0,24.0,0.3,2.0,0.0,0.0,0.0,3.75,4.5,0.0,4.5,5.0,0.0,0.0,27.95,0.0,6.55,2.2,3.25,19.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15324074074074076,0.15324074074074076,0.22407407407407406,2,0
|
||||||
@ -6300,13 +6300,13 @@ player_id,player_name,cardset_name,rarity,hand,variant,homerun_vl,bp_homerun_vl,
|
|||||||
11978.0,Bryce Elder,2025 Season,Replacement,R,0.0,1.1,2.0,0.0,0.0,0.0,3.3,4.5,0.0,4.5,5.0,0.0,0.0,32.0,4.0,1.6,4.0,5.5,11.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15648148148148147,0.15648148148148147,0.24537037037037038,0.0,3.0,5.0,6.0,1.0,,#1WR-C,2.0,24.0,1.95,2.0,0.0,0.0,0.0,5.85,6.2,0.0,6.1,5.0,0.0,0.0,31.0,0.0,5.2,6.0,5.8,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.21851851851851853,0.21851851851851853,0.35462962962962963,2,0
|
11978.0,Bryce Elder,2025 Season,Replacement,R,0.0,1.1,2.0,0.0,0.0,0.0,3.3,4.5,0.0,4.5,5.0,0.0,0.0,32.0,4.0,1.6,4.0,5.5,11.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15648148148148147,0.15648148148148147,0.24537037037037038,0.0,3.0,5.0,6.0,1.0,,#1WR-C,2.0,24.0,1.95,2.0,0.0,0.0,0.0,5.85,6.2,0.0,6.1,5.0,0.0,0.0,31.0,0.0,5.2,6.0,5.8,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.21851851851851853,0.21851851851851853,0.35462962962962963,2,0
|
||||||
11979.0,Brandon Pfaadt,2025 Season,Replacement,R,0.0,0.6,3.0,0.0,0.0,0.0,5.7,4.75,0.0,4.5,5.0,0.0,0.0,25.95,0.0,8.1,1.9,2.7,16.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18101851851851852,0.18101851851851852,0.29212962962962963,0.0,3.0,6.0,5.0,1.0,,#1WR-C,1.0,24.0,0.7,3.0,0.0,0.0,0.0,6.85,5.4,0.0,5.1,5.0,0.0,0.0,29.95,0.0,6.449999999999999,1.65,1.65,13.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20416666666666666,0.20416666666666666,0.3287037037037037,5,42
|
11979.0,Brandon Pfaadt,2025 Season,Replacement,R,0.0,0.6,3.0,0.0,0.0,0.0,5.7,4.75,0.0,4.5,5.0,0.0,0.0,25.95,0.0,8.1,1.9,2.7,16.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18101851851851852,0.18101851851851852,0.29212962962962963,0.0,3.0,6.0,5.0,1.0,,#1WR-C,1.0,24.0,0.7,3.0,0.0,0.0,0.0,6.85,5.4,0.0,5.1,5.0,0.0,0.0,29.95,0.0,6.449999999999999,1.65,1.65,13.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20416666666666666,0.20416666666666666,0.3287037037037037,5,42
|
||||||
11980.0,Noah Murdock,2025 Season,Replacement,R,0.0,0.0,0.0,0.0,0.0,0.0,8.0,0.0,0.0,15.0,5.0,0.0,0.0,33.0,5.0,0.0,4.0,9.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2361111111111111,0.2361111111111111,0.3101851851851852,17.0,0.0,0.0,1.0,1.0,,#1WR-C,2.0,24.0,0.0,0.0,0.0,0.0,10.5,0.0,8.9,8.9,0.0,5.0,0.0,0.0,27.0,4.0,2.0,5.0,5.6,2.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2851851851851852,0.2851851851851852,0.3824074074074074,3,0
|
11980.0,Noah Murdock,2025 Season,Replacement,R,0.0,0.0,0.0,0.0,0.0,0.0,8.0,0.0,0.0,15.0,5.0,0.0,0.0,33.0,5.0,0.0,4.0,9.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2361111111111111,0.2361111111111111,0.3101851851851852,17.0,0.0,0.0,1.0,1.0,,#1WR-C,2.0,24.0,0.0,0.0,0.0,0.0,10.5,0.0,8.9,8.9,0.0,5.0,0.0,0.0,27.0,4.0,2.0,5.0,5.6,2.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2851851851851852,0.2851851851851852,0.3824074074074074,3,0
|
||||||
11981.0,Alek Jacob,2025 Season,Reserve,R,0.0,0.45,3.0,0.0,0.0,3.5,0.0,6.15,6.15,0.0,5.0,0.0,0.0,11.95,0.0,13.35,3.6,5.9,19.95,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1875,0.1875,0.2740740740740741,0.0,0.0,4.0,1.0,1.0,,#1WR-C,1.0,24.0,1.1,3.0,0.0,0.0,5.7,0.0,4.75,4.75,0.0,5.0,0.0,0.0,30.95,0.0,8.35,2.75,3.5,9.15,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18796296296296297,0.18796296296296297,0.31296296296296294,2,0
|
11981.0,Alek Jacob,2025 Season,Reserve,R,0.0,0.0,3.0,0.0,0.0,3.9,0.0,6.2,3.0,0.0,5.0,0.0,0.0,15.0,4.0,6.0,9.0,11.9,12.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15833333333333333,0.15833333333333333,0.2361111111111111,0.0,0.0,4.0,1.0,1.0,,#1WR-C,1.0,24.0,1.1,3.0,0.0,0.0,5.7,0.0,4.7,4.8,0.0,5.0,0.0,0.0,33.0,4.0,0.9,9.0,6.6,1.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18796296296296297,0.18796296296296297,0.31296296296296294,2,0
|
||||||
11982.0,Bryce Miller,2025 Season,Replacement,R,0.0,4.0,2.0,0.0,0.0,0.0,5.5,3.25,0.0,2.75,5.0,0.0,0.0,32.0,0.0,9.5,5.0,1.75,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17592592592592593,0.17592592592592593,0.36574074074074076,0.0,4.0,4.0,5.0,1.0,,#1WR-C,2.0,24.0,1.0,2.0,0.0,0.0,0.0,5.7,5.1,0.0,5.4,5.0,0.0,0.0,32.0,4.0,7.3,6.0,4.9,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19166666666666668,0.19166666666666668,0.3,4,0
|
11982.0,Bryce Miller,2025 Season,Replacement,R,0.0,4.0,2.0,0.0,0.0,0.0,5.5,3.25,0.0,2.75,5.0,0.0,0.0,32.0,0.0,9.5,5.0,1.75,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17592592592592593,0.17592592592592593,0.36574074074074076,0.0,4.0,4.0,5.0,1.0,,#1WR-C,2.0,24.0,1.0,2.0,0.0,0.0,0.0,5.7,5.1,0.0,5.4,5.0,0.0,0.0,32.0,4.0,7.3,6.0,4.9,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19166666666666668,0.19166666666666668,0.3,4,0
|
||||||
11983.0,Sean Burke,2025 Season,Reserve,R,0.0,1.3,3.0,0.0,0.0,0.0,3.7,3.9,0.0,3.8,5.0,0.0,0.0,35.0,4.0,0.0,4.0,6.1,9.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15462962962962962,0.15462962962962962,0.26666666666666666,0.0,3.0,0.0,5.0,4.0,,#1WR-C,2.0,24.0,0.0,3.0,0.0,0.0,0.0,7.2,3.9,0.0,3.9,5.0,0.0,0.0,31.0,4.0,1.8,6.0,6.1,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17592592592592593,0.17592592592592593,0.28425925925925927,2,51
|
11983.0,Sean Burke,2025 Season,Reserve,R,0.0,1.3,3.0,0.0,0.0,0.0,3.7,3.9,0.0,3.8,5.0,0.0,0.0,35.0,4.0,0.0,4.0,6.1,9.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15462962962962962,0.15462962962962962,0.26666666666666666,0.0,3.0,0.0,5.0,4.0,,#1WR-C,2.0,24.0,0.0,3.0,0.0,0.0,0.0,7.2,3.9,0.0,3.9,5.0,0.0,0.0,31.0,4.0,1.8,6.0,6.1,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17592592592592593,0.17592592592592593,0.28425925925925927,2,51
|
||||||
11984.0,Aj Smith Shawver,2025 Season,Reserve,R,0.0,0.55,2.0,0.0,0.0,0.0,3.25,3.3,0.0,3.4,5.0,0.0,0.0,35.95,0.0,7.8,2.7,1.65,13.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12962962962962962,0.12962962962962962,0.20277777777777775,0.0,14.0,6.0,5.0,1.0,,#1WR-C,3.0,24.0,0.0,3.0,0.0,0.0,0.0,5.1,7.15,0.0,7.15,5.0,0.0,0.0,30.95,0.0,5.1,1.4,1.9,12.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.21666666666666665,0.21666666666666665,0.3055555555555556,4,0
|
11984.0,Aj Smith Shawver,2025 Season,Reserve,R,0.0,0.55,2.0,0.0,0.0,0.0,3.25,3.3,0.0,3.4,5.0,0.0,0.0,35.95,0.0,7.8,2.7,1.65,13.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12962962962962962,0.12962962962962962,0.20277777777777775,0.0,14.0,6.0,5.0,1.0,,#1WR-C,3.0,24.0,0.0,3.0,0.0,0.0,0.0,5.1,7.15,0.0,7.15,5.0,0.0,0.0,30.95,0.0,5.1,1.4,1.9,12.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.21666666666666665,0.21666666666666665,0.3055555555555556,4,0
|
||||||
11985.0,Cade Povich,2025 Season,Replacement,L,0.0,1.5,3.0,1.6,0.0,0.0,3.5,5.7,0.0,5.7,5.0,0.0,0.0,30.0,5.0,4.0,4.0,6.7,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2037037037037037,0.2037037037037037,0.3490740740740741,0.0,11.0,-2.0,5.0,1.0,,#1WL-C,3.0,24.0,0.0,3.0,0.0,0.0,0.0,4.8,6.3,0.0,3.0,5.0,0.0,0.0,27.0,5.0,5.2,4.0,6.7,9.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1675925925925926,0.1675925925925926,0.2537037037037037,3,20
|
11985.0,Cade Povich,2025 Season,Replacement,L,0.0,1.5,3.0,1.6,0.0,0.0,3.5,5.7,0.0,5.7,5.0,0.0,0.0,30.0,5.0,4.0,4.0,6.7,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2037037037037037,0.2037037037037037,0.3490740740740741,0.0,11.0,-2.0,5.0,1.0,,#1WL-C,3.0,24.0,0.0,3.0,0.0,0.0,0.0,4.8,6.3,0.0,3.0,5.0,0.0,0.0,27.0,5.0,5.2,4.0,6.7,9.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1675925925925926,0.1675925925925926,0.2537037037037037,3,20
|
||||||
11986.0,Landen Roupp,2025 Season,Reserve,R,0.0,0.0,1.0,0.0,0.0,0.0,6.3,5.4,0.0,5.1,5.0,0.0,0.0,28.0,0.0,6.7,4.0,6.6,10.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18333333333333332,0.18333333333333332,0.25555555555555554,3.0,13.0,0.0,5.0,1.0,,#1WR-C,1.0,24.0,0.0,2.0,0.0,0.0,0.0,4.65,6.3,0.0,6.3,5.0,0.0,0.0,35.0,4.0,1.35,5.0,2.7,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19212962962962962,0.19212962962962962,0.26296296296296295,3,0
|
11986.0,Landen Roupp,2025 Season,Reserve,R,0.0,0.0,1.0,0.0,0.0,0.0,6.3,5.4,0.0,5.1,5.0,0.0,0.0,28.0,0.0,6.7,4.0,6.6,10.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18333333333333332,0.18333333333333332,0.25555555555555554,3.0,13.0,0.0,5.0,1.0,,#1WR-C,1.0,24.0,0.0,2.0,0.0,0.0,0.0,4.65,6.3,0.0,6.3,5.0,0.0,0.0,35.0,4.0,1.35,5.0,2.7,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19212962962962962,0.19212962962962962,0.26296296296296295,3,0
|
||||||
11987.0,Ben Casparius,2025 Season,Reserve,R,0.0,0.0,1.0,0.0,0.0,5.95,0.0,5.7,5.7,0.0,5.0,0.0,0.0,32.95,0.0,6.749999999999999,1.95,3.2,10.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18842592592592594,0.18842592592592594,0.2574074074074074,0.0,3.0,-1.0,2.0,1.0,0.0,#1WR-C,2.0,24.0,0.4,3.0,0.0,0.0,0.0,6.35,3.2,0.0,3.2,5.0,0.0,0.0,29.95,0.0,8.85,5.1,2.4,11.55,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1587962962962963,0.1587962962962963,0.2703703703703703,4,51
|
11987.0,Ben Casparius,2025 Season,Reserve,R,0.0,0.0,1.0,0.0,0.0,5.8,0.0,5.7,5.8,0.0,5.0,0.0,0.0,38.0,0.0,0.0,5.0,7.5,5.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18796296296296297,0.18796296296296297,0.25555555555555554,0.0,3.0,-1.0,2.0,1.0,0.0,#1WR-C,2.0,24.0,0.0,3.0,0.0,0.0,0.0,6.75,3.2,0.0,3.2,5.0,0.0,0.0,32.0,4.0,1.25,9.0,5.8,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1587962962962963,0.1587962962962963,0.26296296296296295,4,51
|
||||||
11988.0,Mike Vasil,2025 Season,MVP,R,0.0,0.0,2.0,0.0,0.0,0.0,2.2,3.75,0.0,3.75,5.0,0.0,0.0,33.0,4.0,6.8,6.0,5.25,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12222222222222222,0.12222222222222222,0.17037037037037037,6.0,8.0,7.0,2.0,1.0,1.0,#1WR-C,2.0,24.0,0.0,2.0,0.0,0.0,0.0,4.2,3.2,0.0,2.75,5.0,0.0,0.0,39.0,4.0,1.8,9.0,5.8,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12638888888888888,0.12638888888888888,0.19305555555555556,4,0
|
11988.0,Mike Vasil,2025 Season,MVP,R,0.0,0.0,2.0,0.0,0.0,0.0,2.2,3.75,0.0,3.75,5.0,0.0,0.0,33.0,4.0,6.8,6.0,5.25,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12222222222222222,0.12222222222222222,0.17037037037037037,6.0,8.0,7.0,2.0,1.0,1.0,#1WR-C,2.0,24.0,0.0,2.0,0.0,0.0,0.0,4.2,3.2,0.0,2.75,5.0,0.0,0.0,39.0,4.0,1.8,9.0,5.8,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12638888888888888,0.12638888888888888,0.19305555555555556,4,0
|
||||||
11989.0,Chad Patrick,2025 Season,Starter,R,0.0,0.0,1.0,0.0,0.0,0.0,6.3,5.7,0.0,5.4,5.0,0.0,0.0,27.0,5.0,2.7,9.0,7.3,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18888888888888888,0.18888888888888888,0.2611111111111111,0.0,2.0,-3.0,4.0,3.0,,#1WR-C,2.0,24.0,1.1,2.0,0.0,0.0,3.25,0.0,4.15,4.25,0.0,5.0,0.0,0.0,42.0,0.0,5.9,1.0,1.6,8.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15046296296296297,0.15046296296296297,0.2388888888888889,2,13
|
11989.0,Chad Patrick,2025 Season,Starter,R,0.0,0.0,1.0,0.0,0.0,0.0,6.3,5.7,0.0,5.4,5.0,0.0,0.0,27.0,5.0,2.7,9.0,7.3,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18888888888888888,0.18888888888888888,0.2611111111111111,0.0,2.0,-3.0,4.0,3.0,,#1WR-C,2.0,24.0,1.1,2.0,0.0,0.0,3.25,0.0,4.15,4.25,0.0,5.0,0.0,0.0,42.0,0.0,5.9,1.0,1.6,8.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15046296296296297,0.15046296296296297,0.2388888888888889,2,13
|
||||||
11990.0,Gavin Williams,2025 Season,All-Star,R,0.0,1.1,2.0,0.0,0.0,0.0,2.55,0.0,0.0,1.5,5.0,0.0,0.0,43.0,4.0,1.35,11.0,4.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.08009259259259259,0.08009259259259259,0.16203703703703703,2.0,11.0,-2.0,5.0,1.0,,#1WR-C,2.0,24.0,1.2,2.0,0.0,0.0,0.0,2.8,6.0,0.0,2.8,5.0,0.0,0.0,35.0,4.0,4.0,5.0,5.0,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15092592592592594,0.15092592592592594,0.23796296296296296,2,0
|
11990.0,Gavin Williams,2025 Season,All-Star,R,0.0,1.1,2.0,0.0,0.0,0.0,2.55,0.0,0.0,1.5,5.0,0.0,0.0,43.0,4.0,1.35,11.0,4.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.08009259259259259,0.08009259259259259,0.16203703703703703,2.0,11.0,-2.0,5.0,1.0,,#1WR-C,2.0,24.0,1.2,2.0,0.0,0.0,0.0,2.8,6.0,0.0,2.8,5.0,0.0,0.0,35.0,4.0,4.0,5.0,5.0,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15092592592592594,0.15092592592592594,0.23796296296296296,2,0
|
||||||
@ -6333,11 +6333,11 @@ player_id,player_name,cardset_name,rarity,hand,variant,homerun_vl,bp_homerun_vl,
|
|||||||
12112.0,Kirby Yates,2025 Season,Replacement,R,0.0,4.25,3.0,0.0,0.0,0.0,13.75,0.0,0.0,1.4,0.0,0.0,0.0,36.0,0.0,9.0,5.0,0.0,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1935185185185185,0.1935185185185185,0.48055555555555557,0.0,5.0,5.0,1.0,1.0,1.0,#1WR-C,2.0,24.0,1.3,2.0,0.0,0.0,6.2,0.0,2.4,2.2,0.0,5.0,0.0,0.0,41.0,5.0,0.7,4.0,6.4,2.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14444444444444443,0.14444444444444443,0.2657407407407407,4,33
|
12112.0,Kirby Yates,2025 Season,Replacement,R,0.0,4.25,3.0,0.0,0.0,0.0,13.75,0.0,0.0,1.4,0.0,0.0,0.0,36.0,0.0,9.0,5.0,0.0,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1935185185185185,0.1935185185185185,0.48055555555555557,0.0,5.0,5.0,1.0,1.0,1.0,#1WR-C,2.0,24.0,1.3,2.0,0.0,0.0,6.2,0.0,2.4,2.2,0.0,5.0,0.0,0.0,41.0,5.0,0.7,4.0,6.4,2.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14444444444444443,0.14444444444444443,0.2657407407407407,4,33
|
||||||
12113.0,Shelby Miller,2025 Season,All-Star,R,0.0,2.6,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,51.0,4.0,5.4,5.0,4.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.05648148148148148,0.05648148148148148,0.15648148148148147,0.0,4.0,7.0,1.0,1.0,2.0,#1WR-C,1.0,24.0,0.0,0.0,0.0,0.0,0.0,5.1,6.25,0.0,6.2,5.0,0.0,0.0,43.0,0.0,4.9,5.0,2.75,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18564814814814815,0.18564814814814815,0.23287037037037037,3,50
|
12113.0,Shelby Miller,2025 Season,All-Star,R,0.0,2.6,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,51.0,4.0,5.4,5.0,4.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.05648148148148148,0.05648148148148148,0.15648148148148147,0.0,4.0,7.0,1.0,1.0,2.0,#1WR-C,1.0,24.0,0.0,0.0,0.0,0.0,0.0,5.1,6.25,0.0,6.2,5.0,0.0,0.0,43.0,0.0,4.9,5.0,2.75,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18564814814814815,0.18564814814814815,0.23287037037037037,3,50
|
||||||
12114.0,Casey Lawrence,2025 Season,Replacement,R,0.0,0.85,2.0,0.0,0.0,0.0,2.8,8.85,0.0,8.85,5.0,0.0,0.0,11.95,0.0,8.85,2.75,3.75,23.35,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2300925925925926,0.2300925925925926,0.3074074074074074,0.0,12.0,9.0,1.0,3.0,,#1WR-C,2.0,24.0,0.0,2.0,0.0,0.0,0.0,10.55,7.8,0.0,7.8,5.0,0.0,0.0,11.95,0.0,10.55,2.7,3.6,17.05,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2745370370370371,0.2745370370370371,0.39999999999999997,4,0
|
12114.0,Casey Lawrence,2025 Season,Replacement,R,0.0,0.85,2.0,0.0,0.0,0.0,2.8,8.85,0.0,8.85,5.0,0.0,0.0,11.95,0.0,8.85,2.75,3.75,23.35,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2300925925925926,0.2300925925925926,0.3074074074074074,0.0,12.0,9.0,1.0,3.0,,#1WR-C,2.0,24.0,0.0,2.0,0.0,0.0,0.0,10.55,7.8,0.0,7.8,5.0,0.0,0.0,11.95,0.0,10.55,2.7,3.6,17.05,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2745370370370371,0.2745370370370371,0.39999999999999997,4,0
|
||||||
12115.0,Chris Martin,2025 Season,Reserve,R,0.0,0.5,2.0,0.0,0.0,0.0,3.2,6.75,0.0,6.75,5.0,0.0,0.0,33.95,0.0,4.75,2.2,2.4,11.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19166666666666665,0.19166666666666665,0.26296296296296295,0.0,10.0,8.0,1.0,1.0,0.0,#1WR-C,2.0,24.0,1.25,3.0,0.0,0.0,0.0,0.0,6.45,0.0,6.45,5.0,0.0,0.0,37.95,0.0,4.4,2.5,1.9,10.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16805555555555554,0.16805555555555554,0.24444444444444444,3,0
|
12115.0,Chris Martin,2025 Season,Reserve,R,0.0,0.0,2.0,0.0,0.0,0.0,3.7,6.75,0.0,6.7,5.0,0.0,0.0,33.0,0.0,4.3,4.0,5.25,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1912037037037037,0.1912037037037037,0.25324074074074077,0.0,10.0,8.0,1.0,1.0,0.0,#1WR-C,2.0,24.0,1.25,3.0,0.0,0.0,0.0,0.0,6.4,0.0,6.5,5.0,0.0,0.0,35.0,4.0,3.75,4.0,4.6,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16805555555555557,0.16805555555555557,0.24444444444444444,3,0
|
||||||
12116.0,Jason Adam,2025 Season,All-Star,R,0.0,0.0,2.0,0.0,0.0,1.4,0.0,1.9,1.95,0.0,5.0,0.0,0.0,41.95,0.0,9.35,1.9,3.3,10.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.08101851851851852,0.08101851851851852,0.12175925925925925,0.0,9.0,5.0,1.0,1.0,,#1WR-C,3.0,24.0,0.0,0.0,0.0,0.0,0.0,2.7,6.95,0.0,6.95,5.0,0.0,0.0,37.95,0.0,6.55,1.2,1.25,10.45,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17685185185185187,0.17685185185185187,0.20185185185185187,3,0
|
12116.0,Jason Adam,2025 Season,All-Star,R,0.0,0.0,2.0,0.0,0.0,1.4,0.0,2.6,1.95,0.0,5.0,0.0,0.0,42.0,0.0,9.0,1.0,4.0,10.05,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.0875,0.0875,0.12824074074074074,0.0,9.0,5.0,1.0,1.0,,#1WR-C,3.0,24.0,0.0,0.0,0.0,0.0,0.0,2.7,6.9,0.0,7.0,5.0,0.0,0.0,33.0,5.0,0.3,9.0,6.1,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17685185185185184,0.17685185185185184,0.20185185185185187,3,0
|
||||||
12117.0,Yimi Garcia,2025 Season,Hall of Fame,R,0.0,0.9,1.0,0.0,0.0,0.0,2.1,1.6,0.0,1.5,5.0,0.0,0.0,39.95,0.0,7.1499999999999995,3.2,0.0,16.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.08425925925925926,0.08425925925925926,0.1425925925925926,0.0,19.0,-1.0,1.0,1.0,0.0,#1WR-C,1.0,24.0,0.0,2.0,0.0,0.0,0.0,0.0,3.5,3.5,0.0,5.0,0.0,0.0,48.95,0.0,4.5,0.0,2.4,9.15,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.09722222222222222,0.09722222222222222,0.125,3,51
|
12117.0,Yimi Garcia,2025 Season,Hall of Fame,R,0.0,0.9,1.0,0.0,0.0,0.0,2.1,1.6,0.0,1.5,5.0,0.0,0.0,39.95,0.0,7.1499999999999995,3.2,0.0,16.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.08425925925925926,0.08425925925925926,0.1425925925925926,0.0,19.0,-1.0,1.0,1.0,0.0,#1WR-C,1.0,24.0,0.0,2.0,0.0,0.0,0.0,0.0,3.5,3.5,0.0,5.0,0.0,0.0,48.95,0.0,4.5,0.0,2.4,9.15,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.09722222222222222,0.09722222222222222,0.125,3,51
|
||||||
12118.0,Colin Rea,2025 Season,Reserve,R,0.0,1.3,3.0,0.0,0.0,0.0,5.45,5.7,0.0,5.6,5.0,0.0,0.0,27.0,5.0,0.25,5.0,7.3,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20416666666666666,0.20416666666666666,0.33240740740740743,0.0,3.0,-3.0,5.0,4.0,,#1WR-C,2.0,24.0,0.0,2.0,0.0,0.0,0.0,3.2,4.5,0.0,4.25,5.0,0.0,0.0,32.0,4.0,0.8,5.0,7.5,10.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14305555555555555,0.14305555555555555,0.20046296296296295,1,6
|
12118.0,Colin Rea,2025 Season,Reserve,R,0.0,1.3,3.0,0.0,0.0,0.0,5.45,5.7,0.0,5.6,5.0,0.0,0.0,27.0,5.0,0.25,5.0,7.3,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20416666666666666,0.20416666666666666,0.33240740740740743,0.0,3.0,-3.0,5.0,4.0,,#1WR-C,2.0,24.0,0.0,2.0,0.0,0.0,0.0,3.2,4.5,0.0,4.25,5.0,0.0,0.0,32.0,4.0,0.8,5.0,7.5,10.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14305555555555555,0.14305555555555555,0.20046296296296295,1,6
|
||||||
12119.0,Rafael Montero,2025 Season,MVP,R,0.0,0.7,2.0,0.0,0.0,0.0,3.3,1.9,0.0,1.9,5.0,0.0,0.0,30.95,0.0,8.2,3.2,3.4,18.45,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10462962962962964,0.10462962962962964,0.1824074074074074,0.0,0.0,-1.0,1.0,1.0,,#1WR-C,3.0,24.0,0.0,1.0,0.0,0.0,0.0,4.85,2.75,0.0,2.75,5.0,0.0,0.0,40.95,0.0,6.35,1.65,2.4,11.3,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1236111111111111,0.1236111111111111,0.1824074074074074,3,0
|
12119.0,Rafael Montero,2025 Season,MVP,R,0.0,0.0,2.0,0.0,0.0,0.0,4.0,1.9,0.0,1.9,5.0,0.0,0.0,33.0,4.0,0.0,9.0,7.1,11.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10462962962962963,0.10462962962962963,0.16944444444444445,0.0,0.0,-1.0,1.0,1.0,,#1WR-C,3.0,24.0,0.0,1.0,0.0,0.0,0.0,4.85,2.75,0.0,2.75,5.0,0.0,0.0,41.0,4.0,0.15,4.0,6.25,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12361111111111112,0.12361111111111112,0.1824074074074074,3,0
|
||||||
12120.0,Shawn Armstrong,2025 Season,MVP,R,0.0,1.1,4.0,0.0,0.0,0.0,5.75,2.1,0.0,1.8,5.0,0.0,0.0,35.0,1.0,0.15,8.0,3.9,9.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1412037037037037,0.1412037037037037,0.28055555555555556,0.0,8.0,9.0,1.0,1.0,1.0,#1WR-C,3.0,24.0,0.0,0.0,0.0,0.0,0.0,1.75,0.0,0.0,0.0,5.0,0.0,0.0,48.0,4.0,6.25,9.0,5.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.03935185185185185,0.03935185185185185,0.05555555555555555,2,0
|
12120.0,Shawn Armstrong,2025 Season,MVP,R,0.0,1.1,4.0,0.0,0.0,0.0,5.75,2.1,0.0,1.8,5.0,0.0,0.0,35.0,1.0,0.15,8.0,3.9,9.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1412037037037037,0.1412037037037037,0.28055555555555556,0.0,8.0,9.0,1.0,1.0,1.0,#1WR-C,3.0,24.0,0.0,0.0,0.0,0.0,0.0,1.75,0.0,0.0,0.0,5.0,0.0,0.0,48.0,4.0,6.25,9.0,5.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.03935185185185185,0.03935185185185185,0.05555555555555555,2,0
|
||||||
12121.0,Hoby Milner,2025 Season,Reserve,L,0.0,0.0,1.0,0.0,0.0,0.0,3.75,3.75,3.6,0.0,5.0,0.0,0.0,36.0,4.0,1.25,4.0,5.25,11.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13055555555555556,0.13055555555555556,0.17916666666666667,0.0,0.0,-5.0,1.0,1.0,,#1WL-C,1.0,24.0,0.0,3.0,0.0,0.0,0.0,5.7,6.4,0.0,6.4,5.0,0.0,0.0,32.0,5.0,3.3,4.0,6.6,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20833333333333334,0.20833333333333334,0.30277777777777776,2,0
|
12121.0,Hoby Milner,2025 Season,Reserve,L,0.0,0.0,1.0,0.0,0.0,0.0,3.75,3.75,3.6,0.0,5.0,0.0,0.0,36.0,4.0,1.25,4.0,5.25,11.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13055555555555556,0.13055555555555556,0.17916666666666667,0.0,0.0,-5.0,1.0,1.0,,#1WL-C,1.0,24.0,0.0,3.0,0.0,0.0,0.0,5.7,6.4,0.0,6.4,5.0,0.0,0.0,32.0,5.0,3.3,4.0,6.6,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20833333333333334,0.20833333333333334,0.30277777777777776,2,0
|
||||||
12122.0,Pierce Johnson,2025 Season,Starter,R,0.0,1.1,3.0,0.0,0.0,0.0,3.2,5.1,0.0,4.75,5.0,0.0,0.0,31.0,4.0,0.7,5.0,5.9,10.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16805555555555557,0.16805555555555557,0.26990740740740743,0.0,7.0,3.0,1.0,1.0,0.0,#1WR-C,3.0,24.0,0.0,2.0,0.0,0.0,0.0,4.2,4.2,0.0,4.2,5.0,0.0,0.0,33.0,5.0,4.8,9.0,5.8,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14907407407407408,0.14907407407407408,0.21574074074074073,3,0
|
12122.0,Pierce Johnson,2025 Season,Starter,R,0.0,1.1,3.0,0.0,0.0,0.0,3.2,5.1,0.0,4.75,5.0,0.0,0.0,31.0,4.0,0.7,5.0,5.9,10.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16805555555555557,0.16805555555555557,0.26990740740740743,0.0,7.0,3.0,1.0,1.0,0.0,#1WR-C,3.0,24.0,0.0,2.0,0.0,0.0,0.0,4.2,4.2,0.0,4.2,5.0,0.0,0.0,33.0,5.0,4.8,9.0,5.8,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14907407407407408,0.14907407407407408,0.21574074074074073,3,0
|
||||||
@ -6363,12 +6363,12 @@ player_id,player_name,cardset_name,rarity,hand,variant,homerun_vl,bp_homerun_vl,
|
|||||||
12142.0,Lucas Giolito,2025 Season,Starter,R,0.0,0.0,2.0,0.0,0.0,0.0,6.75,2.25,0.0,2.25,5.0,0.0,0.0,36.0,0.0,10.25,3.0,2.75,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13657407407407407,0.13657407407407407,0.22685185185185186,0.0,6.0,-1.0,6.0,1.0,,#1WR-C,2.0,24.0,0.0,3.0,0.0,0.0,0.0,0.0,7.5,0.0,7.0,5.0,0.0,0.0,24.0,4.0,8.0,5.0,5.5,10.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1712962962962963,0.1712962962962963,0.21296296296296297,5,51
|
12142.0,Lucas Giolito,2025 Season,Starter,R,0.0,0.0,2.0,0.0,0.0,0.0,6.75,2.25,0.0,2.25,5.0,0.0,0.0,36.0,0.0,10.25,3.0,2.75,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13657407407407407,0.13657407407407407,0.22685185185185186,0.0,6.0,-1.0,6.0,1.0,,#1WR-C,2.0,24.0,0.0,3.0,0.0,0.0,0.0,0.0,7.5,0.0,7.0,5.0,0.0,0.0,24.0,4.0,8.0,5.0,5.5,10.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1712962962962963,0.1712962962962963,0.21296296296296297,5,51
|
||||||
12143.0,Tyler Rogers,2025 Season,All-Star,R,0.0,1.8,0.0,0.0,0.0,1.95,0.0,0.0,10.6,0.0,5.0,0.0,0.0,20.0,4.0,3.25,5.0,9.0,18.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15601851851851853,0.15601851851851853,0.22407407407407406,0.0,0.0,9.0,1.0,1.0,,#1WR-C,1.0,24.0,0.0,1.0,0.0,0.0,2.2,0.0,5.7,5.4,0.0,5.0,0.0,0.0,31.0,0.0,5.0,2.0,9.1,12.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15092592592592594,0.15092592592592594,0.18518518518518517,1,0
|
12143.0,Tyler Rogers,2025 Season,All-Star,R,0.0,1.8,0.0,0.0,0.0,1.95,0.0,0.0,10.6,0.0,5.0,0.0,0.0,20.0,4.0,3.25,5.0,9.0,18.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15601851851851853,0.15601851851851853,0.22407407407407406,0.0,0.0,9.0,1.0,1.0,,#1WR-C,1.0,24.0,0.0,1.0,0.0,0.0,2.2,0.0,5.7,5.4,0.0,5.0,0.0,0.0,31.0,0.0,5.0,2.0,9.1,12.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15092592592592594,0.15092592592592594,0.18518518518518517,1,0
|
||||||
12144.0,Chad Green,2025 Season,Replacement,R,0.0,4.3,3.0,0.0,0.0,0.0,5.1,1.9,0.0,1.9,5.0,0.0,0.0,34.0,4.0,10.6,4.0,5.1,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15925925925925927,0.15925925925925927,0.3675925925925926,0.0,0.0,-3.0,1.0,1.0,1.0,#1WR-C,2.0,24.0,3.9,3.0,0.0,0.0,1.7,0.0,7.8,7.8,0.0,5.0,0.0,0.0,27.0,4.0,2.1,4.0,6.5,6.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.23333333333333334,0.23333333333333334,0.3990740740740741,4,0
|
12144.0,Chad Green,2025 Season,Replacement,R,0.0,4.3,3.0,0.0,0.0,0.0,5.1,1.9,0.0,1.9,5.0,0.0,0.0,34.0,4.0,10.6,4.0,5.1,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15925925925925927,0.15925925925925927,0.3675925925925926,0.0,0.0,-3.0,1.0,1.0,1.0,#1WR-C,2.0,24.0,3.9,3.0,0.0,0.0,1.7,0.0,7.8,7.8,0.0,5.0,0.0,0.0,27.0,4.0,2.1,4.0,6.5,6.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.23333333333333334,0.23333333333333334,0.3990740740740741,4,0
|
||||||
12145.0,Brad Keller,2025 Season,MVP,R,0.0,0.0,0.0,0.0,0.0,0.0,2.9000000000000004,5.4,0.0,5.4,5.0,0.0,0.0,38.95,0.0,5.25,1.5,2.55,12.05,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15000000000000002,0.15000000000000002,0.17685185185185187,0.0,3.0,9.0,1.0,1.0,0.0,#1WR-C,1.0,24.0,0.1,2.0,0.0,0.0,0.0,0.0,0.0,3.5,0.0,5.0,0.0,0.0,42.95,0.0,5.550000000000001,1.65,3.9,14.35,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.06574074074074074,0.06574074074074074,0.0962962962962963,2,0
|
12145.0,Brad Keller,2025 Season,MVP,R,0.0,0.0,0.0,0.0,0.0,0.0,2.85,5.4,0.0,5.4,5.0,0.0,0.0,44.0,0.0,5.15,1.0,4.6,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14953703703703702,0.14953703703703702,0.17592592592592593,0.0,3.0,9.0,1.0,1.0,0.0,#1WR-C,1.0,24.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,3.5,0.0,5.0,0.0,0.0,48.0,4.0,0.0,6.0,9.0,1.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.06481481481481481,0.06481481481481481,0.09259259259259259,2,0
|
||||||
12146.0,Devin Williams,2025 Season,MVP,R,0.0,0.0,3.0,0.0,0.0,0.0,4.2,0.0,0.0,3.8,5.0,0.0,0.0,48.0,0.0,5.8,5.0,4.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1111111111111111,0.1111111111111111,0.19166666666666668,0.0,13.0,8.0,1.0,1.0,2.0,#1WR-C,3.0,24.0,0.0,0.0,0.0,0.0,0.0,4.95,3.15,0.0,2.0,5.0,0.0,0.0,39.0,8.0,0.0,4.0,9.0,3.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11666666666666667,0.11666666666666667,0.1625,4,0
|
12146.0,Devin Williams,2025 Season,MVP,R,0.0,0.0,3.0,0.0,0.0,0.0,4.2,0.0,0.0,3.8,5.0,0.0,0.0,48.0,0.0,5.8,5.0,4.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1111111111111111,0.1111111111111111,0.19166666666666668,0.0,13.0,8.0,1.0,1.0,2.0,#1WR-C,3.0,24.0,0.0,0.0,0.0,0.0,0.0,4.95,3.15,0.0,2.0,5.0,0.0,0.0,39.0,8.0,0.0,4.0,9.0,3.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11666666666666667,0.11666666666666667,0.1625,4,0
|
||||||
12147.0,Ryne Stanek,2025 Season,Reserve,R,0.0,0.0,2.0,0.0,0.0,0.0,5.5,7.0,0.0,6.8,5.0,0.0,0.0,30.0,0.0,6.5,5.0,1.0,9.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2111111111111111,0.2111111111111111,0.2898148148148148,0.0,18.0,9.0,1.0,1.0,1.0,#1WR-C,2.0,24.0,1.3,2.0,0.0,0.0,0.0,3.3,3.5,0.0,3.5,5.0,0.0,0.0,29.0,4.0,7.4,8.0,6.5,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1398148148148148,0.1398148148148148,0.23425925925925925,2,0
|
12147.0,Ryne Stanek,2025 Season,Reserve,R,0.0,0.0,2.0,0.0,0.0,0.0,5.5,7.0,0.0,6.8,5.0,0.0,0.0,30.0,0.0,6.5,5.0,1.0,9.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2111111111111111,0.2111111111111111,0.2898148148148148,0.0,18.0,9.0,1.0,1.0,1.0,#1WR-C,2.0,24.0,1.3,2.0,0.0,0.0,0.0,3.3,3.5,0.0,3.5,5.0,0.0,0.0,29.0,4.0,7.4,8.0,6.5,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1398148148148148,0.1398148148148148,0.23425925925925925,2,0
|
||||||
12148.0,Cam Booser,2025 Season,Reserve,L,0.0,1.1,2.0,0.0,0.0,0.0,3.15,2.25,0.0,2.25,5.0,0.0,0.0,39.0,6.0,6.75,4.0,6.75,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11342592592592593,0.11342592592592593,0.20092592592592592,0.0,19.0,-5.0,1.0,1.0,1.0,#1WL-C,1.0,24.0,4.1,3.0,0.0,0.0,0.0,3.9,3.5,0.0,3.25,5.0,0.0,0.0,36.0,5.0,4.0,4.0,5.5,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1736111111111111,0.1736111111111111,0.36527777777777776,3,51
|
12148.0,Cam Booser,2025 Season,Reserve,L,0.0,1.1,2.0,0.0,0.0,0.0,3.15,2.25,0.0,2.25,5.0,0.0,0.0,39.0,6.0,6.75,4.0,6.75,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11342592592592593,0.11342592592592593,0.20092592592592592,0.0,19.0,-5.0,1.0,1.0,1.0,#1WL-C,1.0,24.0,4.1,3.0,0.0,0.0,0.0,3.9,3.5,0.0,3.25,5.0,0.0,0.0,36.0,5.0,4.0,4.0,5.5,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1736111111111111,0.1736111111111111,0.36527777777777776,3,51
|
||||||
12149.0,Jordan Romano,2025 Season,Replacement,R,0.0,3.5,2.0,0.0,0.0,3.75,0.0,3.9,3.8,0.0,5.0,0.0,0.0,39.0,4.0,1.5,5.0,4.0,3.55,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17083333333333334,0.17083333333333334,0.33055555555555555,7.0,0.0,-1.0,1.0,1.0,1.0,#1WR-C,3.0,24.0,0.0,4.0,0.0,0.0,7.0,0.0,5.4,5.1,0.0,5.0,0.0,0.0,34.0,0.0,0.0,4.0,5.6,8.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2037037037037037,0.2037037037037037,0.32407407407407407,4,0
|
12149.0,Jordan Romano,2025 Season,Replacement,R,0.0,3.5,2.0,0.0,0.0,3.75,0.0,3.9,3.8,0.0,5.0,0.0,0.0,39.0,4.0,1.5,5.0,4.0,3.55,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17083333333333334,0.17083333333333334,0.33055555555555555,7.0,0.0,-1.0,1.0,1.0,1.0,#1WR-C,3.0,24.0,0.0,4.0,0.0,0.0,7.0,0.0,5.4,5.1,0.0,5.0,0.0,0.0,34.0,0.0,0.0,4.0,5.6,8.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2037037037037037,0.2037037037037037,0.32407407407407407,4,0
|
||||||
12150.0,Aaron Bummer,2025 Season,Starter,L,0.0,0.0,2.0,0.0,0.0,0.0,3.75,5.95,0.0,5.9,5.0,0.0,0.0,36.95,1.2,2.55,0.0,2.1,13.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17685185185185187,0.17685185185185187,0.23935185185185187,0.0,4.0,5.0,1.0,1.0,,#1WL-C,2.0,24.0,0.1,2.0,0.0,0.0,0.0,6.25,3.75,0.0,3.75,5.0,0.0,0.0,31.95,1.35,4.35,0.0,2.2,18.3,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16064814814814815,0.16064814814814815,0.24907407407407406,3,46
|
12150.0,Aaron Bummer,2025 Season,Starter,L,0.0,0.0,2.0,0.0,0.0,0.0,3.75,5.8,0.0,3.0,5.0,0.0,0.0,39.0,9.0,2.25,4.0,5.2,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1486111111111111,0.1486111111111111,0.2111111111111111,0.0,4.0,5.0,1.0,1.0,,#1WL-C,2.0,24.0,0.0,2.0,0.0,0.0,0.0,6.3,3.8,0.0,3.75,5.0,0.0,0.0,40.0,4.0,3.7,4.0,5.2,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16064814814814815,0.16064814814814815,0.24675925925925926,3,46
|
||||||
12151.0,Scott Blewett,2025 Season,Reserve,R,0.0,4.9,3.0,0.0,0.0,0.0,0.0,3.2,3.2,0.0,5.0,0.0,0.0,36.0,4.0,2.1,5.0,6.8,5.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14166666666666666,0.14166666666666666,0.3194444444444444,0.0,5.0,-1.0,2.0,1.0,,#1WR-C,2.0,24.0,0.0,2.0,0.0,0.0,0.0,5.1,7.25,0.0,7.0,5.0,0.0,0.0,25.0,4.0,0.9,5.0,5.0,12.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.21157407407407408,0.21157407407407408,0.2865740740740741,3,0
|
12151.0,Scott Blewett,2025 Season,Reserve,R,0.0,4.9,3.0,0.0,0.0,0.0,0.0,3.2,3.2,0.0,5.0,0.0,0.0,36.0,4.0,2.1,5.0,6.8,5.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14166666666666666,0.14166666666666666,0.3194444444444444,0.0,5.0,-1.0,2.0,1.0,,#1WR-C,2.0,24.0,0.0,2.0,0.0,0.0,0.0,5.1,7.25,0.0,7.0,5.0,0.0,0.0,25.0,4.0,0.9,5.0,5.0,12.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.21157407407407408,0.21157407407407408,0.2865740740740741,3,0
|
||||||
12152.0,Ryan Yarbrough,2025 Season,Starter,L,0.0,2.6,1.0,0.0,0.0,0.0,1.95,2.7,0.0,2.7,5.0,0.0,0.0,35.0,11.0,2.45,4.0,7.3,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11990740740740741,0.11990740740740741,0.22407407407407406,0.0,0.0,-1.0,3.0,2.0,0.0,#1WL-C,2.0,24.0,1.2,4.0,0.0,0.0,0.0,3.2,0.0,0.0,9.6,5.0,0.0,0.0,30.0,5.0,8.6,0.0,6.0,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1712962962962963,0.1712962962962963,0.2898148148148148,2,0
|
12152.0,Ryan Yarbrough,2025 Season,Starter,L,0.0,2.6,1.0,0.0,0.0,0.0,1.95,2.7,0.0,2.7,5.0,0.0,0.0,35.0,11.0,2.45,4.0,7.3,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11990740740740741,0.11990740740740741,0.22407407407407406,0.0,0.0,-1.0,3.0,2.0,0.0,#1WL-C,2.0,24.0,1.2,4.0,0.0,0.0,0.0,3.2,0.0,0.0,9.6,5.0,0.0,0.0,30.0,5.0,8.6,0.0,6.0,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1712962962962963,0.1712962962962963,0.2898148148148148,2,0
|
||||||
12153.0,Bryan Abreu,2025 Season,MVP,R,0.0,0.95,1.0,0.0,0.0,0.0,2.5,3.2,0.0,3.2,5.0,0.0,0.0,55.75,0.0,3.2,0.0,0.0,4.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1189814814814815,0.1189814814814815,0.1824074074074074,0.0,11.0,4.0,1.0,1.0,1.0,#1WR-C,2.0,24.0,0.0,0.0,0.0,0.0,0.0,3.25,3.75,0.0,3.75,5.0,0.0,0.0,52.650000000000006,0.0,3.8,0.0,1.1,5.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12268518518518519,0.12268518518518519,0.1527777777777778,4,30
|
12153.0,Bryan Abreu,2025 Season,MVP,R,0.0,0.95,1.0,0.0,0.0,0.0,2.5,3.2,0.0,3.2,5.0,0.0,0.0,55.75,0.0,3.2,0.0,0.0,4.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1189814814814815,0.1189814814814815,0.1824074074074074,0.0,11.0,4.0,1.0,1.0,1.0,#1WR-C,2.0,24.0,0.0,0.0,0.0,0.0,0.0,3.25,3.75,0.0,3.75,5.0,0.0,0.0,52.650000000000006,0.0,3.8,0.0,1.1,5.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12268518518518519,0.12268518518518519,0.1527777777777778,4,30
|
||||||
@ -6382,20 +6382,20 @@ player_id,player_name,cardset_name,rarity,hand,variant,homerun_vl,bp_homerun_vl,
|
|||||||
12161.0,Raisel Iglesias,2025 Season,All-Star,R,0.0,0.0,2.0,0.0,0.0,0.0,4.5,3.2,0.0,2.55,5.0,0.0,0.0,42.0,0.0,8.5,5.0,1.8,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12731481481481483,0.12731481481481483,0.19675925925925927,0.0,0.0,4.0,1.0,1.0,5.0,#1WR-C,2.0,24.0,0.0,3.0,0.0,0.0,3.9,0.0,2.1,2.75,0.0,5.0,0.0,0.0,45.0,4.0,0.0,6.0,5.0,2.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11805555555555555,0.11805555555555555,0.19583333333333333,2,0
|
12161.0,Raisel Iglesias,2025 Season,All-Star,R,0.0,0.0,2.0,0.0,0.0,0.0,4.5,3.2,0.0,2.55,5.0,0.0,0.0,42.0,0.0,8.5,5.0,1.8,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12731481481481483,0.12731481481481483,0.19675925925925927,0.0,0.0,4.0,1.0,1.0,5.0,#1WR-C,2.0,24.0,0.0,3.0,0.0,0.0,3.9,0.0,2.1,2.75,0.0,5.0,0.0,0.0,45.0,4.0,0.0,6.0,5.0,2.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11805555555555555,0.11805555555555555,0.19583333333333333,2,0
|
||||||
12162.0,Gabe Speier,2025 Season,MVP,L,0.0,0.0,1.0,0.0,0.0,0.0,4.0,2.05,0.0,1.9,5.0,0.0,0.0,45.0,9.0,0.0,5.0,5.95,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10138888888888889,0.10138888888888889,0.15231481481481482,0.0,3.0,5.0,1.0,1.0,,#1WL-C,2.0,24.0,0.0,2.0,0.0,0.0,0.0,5.5,1.95,0.0,2.1,5.0,0.0,0.0,39.0,5.0,5.5,4.0,4.0,1.05,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12083333333333333,0.12083333333333333,0.19953703703703704,4,0
|
12162.0,Gabe Speier,2025 Season,MVP,L,0.0,0.0,1.0,0.0,0.0,0.0,4.0,2.05,0.0,1.9,5.0,0.0,0.0,45.0,9.0,0.0,5.0,5.95,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10138888888888889,0.10138888888888889,0.15231481481481482,0.0,3.0,5.0,1.0,1.0,,#1WL-C,2.0,24.0,0.0,2.0,0.0,0.0,0.0,5.5,1.95,0.0,2.1,5.0,0.0,0.0,39.0,5.0,5.5,4.0,4.0,1.05,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12083333333333333,0.12083333333333333,0.19953703703703704,4,0
|
||||||
12163.0,Jalen Beeks,2025 Season,All-Star,L,0.0,0.95,1.0,0.0,0.0,0.0,4.75,3.25,0.0,3.25,5.0,0.0,0.0,39.95,1.9,4.6,0.0,1.2,13.15,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14074074074074072,0.14074074074074072,0.225,0.0,4.0,4.0,1.0,1.0,0.0,#1WL-C,1.0,24.0,0.4,2.0,0.0,0.0,0.0,4.2,1.9,0.0,1.65,5.0,0.0,0.0,23.95,3.75,13.2,0.0,3.9,19.05,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10787037037037038,0.10787037037037038,0.18564814814814815,2,0
|
12163.0,Jalen Beeks,2025 Season,All-Star,L,0.0,0.95,1.0,0.0,0.0,0.0,4.75,3.25,0.0,3.25,5.0,0.0,0.0,39.95,1.9,4.6,0.0,1.2,13.15,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14074074074074072,0.14074074074074072,0.225,0.0,4.0,4.0,1.0,1.0,0.0,#1WL-C,1.0,24.0,0.4,2.0,0.0,0.0,0.0,4.2,1.9,0.0,1.65,5.0,0.0,0.0,23.95,3.75,13.2,0.0,3.9,19.05,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10787037037037038,0.10787037037037038,0.18564814814814815,2,0
|
||||||
12164.0,Jeff Hoffman,2025 Season,Starter,R,0.0,3.4000000000000004,2.0,0.0,0.0,0.0,6.55,0.0,0.0,1.65,5.0,0.0,0.0,46.95,0.0,4.2,1.7,1.25,6.3,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1398148148148148,0.1398148148148148,0.3226851851851852,0.0,6.0,1.0,1.0,1.0,5.0,#1WR-C,3.0,24.0,2.55,2.0,0.0,0.0,0.0,2.5,2.4,0.0,2.25,5.0,0.0,0.0,43.95,0.0,6.449999999999999,1.65,2.1,8.15,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12222222222222222,0.12222222222222222,0.24398148148148147,4,51
|
12164.0,Jeff Hoffman,2025 Season,Starter,R,0.0,3.4,2.0,0.0,0.0,0.0,6.4,0.0,0.0,1.8,5.0,0.0,0.0,45.0,4.0,1.2,6.0,4.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1398148148148148,0.1398148148148148,0.3212962962962963,0.0,6.0,1.0,1.0,1.0,5.0,#1WR-C,3.0,24.0,2.55,2.0,0.0,0.0,0.0,2.4,2.4,0.0,2.3,5.0,0.0,0.0,45.0,1.6,0.0,8.45,6.6,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12175925925925926,0.12175925925925926,0.24259259259259258,4,51
|
||||||
12165.0,Jimmy Herget,2025 Season,Starter,R,0.0,0.0,3.0,0.0,0.0,0.0,3.9,4.75,0.0,4.75,5.0,0.0,0.0,38.0,4.0,2.1,4.0,4.25,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16111111111111112,0.16111111111111112,0.2388888888888889,7.0,5.0,-1.0,1.0,1.0,,#1WR-C,1.0,24.0,0.0,1.0,0.0,0.0,4.25,0.0,4.4,4.2,0.0,5.0,0.0,0.0,36.0,4.0,0.0,4.0,5.35,10.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14675925925925926,0.14675925925925926,0.2,2,27
|
12165.0,Jimmy Herget,2025 Season,Starter,R,0.0,0.0,3.0,0.0,0.0,0.0,3.9,4.75,0.0,4.75,5.0,0.0,0.0,38.0,4.0,2.1,4.0,4.25,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16111111111111112,0.16111111111111112,0.2388888888888889,7.0,5.0,-1.0,1.0,1.0,,#1WR-C,1.0,24.0,0.0,1.0,0.0,0.0,4.25,0.0,4.4,4.2,0.0,5.0,0.0,0.0,36.0,4.0,0.0,4.0,5.35,10.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14675925925925926,0.14675925925925926,0.2,2,27
|
||||||
12166.0,Tanner Scott,2025 Season,Replacement,L,0.0,8.6,0.0,2.2,0.0,0.0,2.75,2.1,0.0,1.9,5.0,0.0,0.0,38.95,2.2,4.6499999999999995,0.0,1.25,9.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18564814814814815,0.18564814814814815,0.49074074074074076,0.0,7.0,-3.0,1.0,1.0,2.0,#1WL-C,3.0,24.0,1.2,2.0,0.0,0.0,0.0,2.75,5.4,0.0,5.4,5.0,0.0,0.0,37.95,1.65,6.300000000000001,0.0,1.2,10.15,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16898148148148148,0.16898148148148148,0.2555555555555556,3,0
|
12166.0,Tanner Scott,2025 Season,Replacement,L,0.0,8.6,0.0,2.2,0.0,0.0,2.75,2.1,0.0,1.9,5.0,0.0,0.0,38.95,2.2,4.6499999999999995,0.0,1.25,9.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18564814814814815,0.18564814814814815,0.49074074074074076,0.0,7.0,-3.0,1.0,1.0,2.0,#1WL-C,3.0,24.0,1.2,2.0,0.0,0.0,0.0,2.75,5.4,0.0,5.4,5.0,0.0,0.0,37.95,1.65,6.300000000000001,0.0,1.2,10.15,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16898148148148148,0.16898148148148148,0.2555555555555556,3,0
|
||||||
12167.0,Dennis Santana,2025 Season,MVP,R,0.0,0.0,0.0,0.0,0.0,0.0,2.8,1.2,0.0,1.05,5.0,0.0,0.0,39.0,4.0,7.2,10.0,6.8,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.0699074074074074,0.0699074074074074,0.09583333333333334,0.0,0.0,-3.0,1.0,1.0,2.0,#1WR-C,1.0,24.0,0.0,3.0,0.0,0.0,0.0,3.6,2.5,0.0,2.4,5.0,0.0,0.0,38.0,0.0,8.4,5.0,3.5,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11574074074074074,0.11574074074074074,0.19074074074074074,2,38
|
12167.0,Dennis Santana,2025 Season,MVP,R,0.0,0.0,0.0,0.0,0.0,0.0,2.8,1.2,0.0,1.05,5.0,0.0,0.0,39.0,4.0,7.2,10.0,6.8,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.0699074074074074,0.0699074074074074,0.09583333333333334,0.0,0.0,-3.0,1.0,1.0,2.0,#1WR-C,1.0,24.0,0.0,3.0,0.0,0.0,0.0,3.6,2.5,0.0,2.4,5.0,0.0,0.0,38.0,0.0,8.4,5.0,3.5,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11574074074074074,0.11574074074074074,0.19074074074074074,2,38
|
||||||
12168.0,Garrett Cleavinger,2025 Season,All-Star,L,0.0,4.2,0.0,0.0,0.0,0.0,0.0,2.8,0.0,2.75,5.0,0.0,0.0,55.95,0.0,2.4,0.0,0.0,5.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11342592592592593,0.11342592592592593,0.2300925925925926,0.0,3.0,-3.0,1.0,1.0,0.0,#1WL-C,3.0,24.0,1.3,2.0,0.0,0.0,0.0,2.75,1.65,0.0,1.65,5.0,0.0,0.0,47.95,2.2,4.3999999999999995,0.0,1.6,8.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10046296296296296,0.10046296296296296,0.18981481481481477,2,0
|
12168.0,Garrett Cleavinger,2025 Season,All-Star,L,0.0,4.2,0.0,0.0,0.0,0.0,0.0,2.8,0.0,2.75,5.0,0.0,0.0,55.95,0.0,2.4,0.0,0.0,5.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11342592592592593,0.11342592592592593,0.2300925925925926,0.0,3.0,-3.0,1.0,1.0,0.0,#1WL-C,3.0,24.0,1.3,2.0,0.0,0.0,0.0,2.75,1.65,0.0,1.65,5.0,0.0,0.0,47.95,2.2,4.3999999999999995,0.0,1.6,8.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10046296296296296,0.10046296296296296,0.18981481481481477,2,0
|
||||||
12169.0,Brock Burke,2025 Season,Reserve,L,0.0,0.0,2.0,0.0,0.0,0.0,4.0,5.8,0.0,5.4,5.0,0.0,0.0,30.0,5.0,0.0,4.0,6.2,11.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17314814814814813,0.17314814814814813,0.23796296296296296,5.0,0.0,-1.0,1.0,1.0,,#1WL-C,3.0,24.0,1.6,3.0,0.0,0.0,0.0,2.5,5.1,0.0,4.75,5.0,0.0,0.0,37.0,7.0,4.9,2.0,5.9,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16620370370370371,0.16620370370370371,0.27546296296296297,2,46
|
12169.0,Brock Burke,2025 Season,Reserve,L,0.0,0.0,2.0,0.0,0.0,0.0,4.0,5.8,0.0,5.4,5.0,0.0,0.0,30.0,5.0,0.0,4.0,6.2,11.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17314814814814813,0.17314814814814813,0.23796296296296296,5.0,0.0,-1.0,1.0,1.0,,#1WL-C,3.0,24.0,1.6,3.0,0.0,0.0,0.0,2.5,5.1,0.0,4.75,5.0,0.0,0.0,37.0,7.0,4.9,2.0,5.9,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16620370370370371,0.16620370370370371,0.27546296296296297,2,46
|
||||||
12170.0,Pete Fairbanks,2025 Season,All-Star,R,0.0,1.75,2.0,0.0,0.0,0.0,3.25,2.55,0.0,2.5,5.0,0.0,0.0,43.0,0.0,5.0,1.0,4.45,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12546296296296297,0.12546296296296297,0.23194444444444445,0.0,7.0,-1.0,1.0,1.0,4.0,#1WR-C,3.0,24.0,0.0,2.0,0.0,0.0,0.0,4.2,2.4,2.2,0.0,5.0,0.0,0.0,36.0,0.0,9.8,8.0,2.6,6.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11388888888888889,0.11388888888888889,0.18055555555555555,2,38
|
12170.0,Pete Fairbanks,2025 Season,All-Star,R,0.0,1.75,2.0,0.0,0.0,0.0,3.25,2.55,0.0,2.5,5.0,0.0,0.0,43.0,0.0,5.0,1.0,4.45,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12546296296296297,0.12546296296296297,0.23194444444444445,0.0,7.0,-1.0,1.0,1.0,4.0,#1WR-C,3.0,24.0,0.0,2.0,0.0,0.0,0.0,4.2,2.4,2.2,0.0,5.0,0.0,0.0,36.0,0.0,9.8,8.0,2.6,6.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11388888888888889,0.11388888888888889,0.18055555555555555,2,38
|
||||||
12171.0,Phil Maton,2025 Season,All-Star,R,0.0,0.0,0.0,0.0,0.0,0.0,6.300000000000001,3.8,0.0,3.9,5.0,0.0,0.0,53.900000000000006,0.0,1.9,0.0,0.0,4.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1527777777777778,0.1527777777777778,0.2111111111111111,0.0,3.0,7.0,1.0,1.0,1.0,#1WR-C,1.0,24.0,0.0,1.0,0.0,0.0,0.0,4.05,1.65,0.0,1.65,5.0,0.0,0.0,47.95,0.0,4.2,1.7,2.25,9.55,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.09583333333333333,0.09583333333333333,0.14722222222222223,4,42
|
12171.0,Phil Maton,2025 Season,All-Star,R,0.0,0.0,0.0,0.0,0.0,0.0,6.3,3.8,0.0,3.0,5.0,0.0,0.0,41.0,4.0,2.7,4.0,5.0,4.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14444444444444443,0.14444444444444443,0.20277777777777778,0.0,3.0,7.0,1.0,1.0,1.0,#1WR-C,1.0,24.0,0.0,1.0,0.0,0.0,0.0,4.05,1.6,0.0,1.7,5.0,0.0,0.0,39.0,5.0,1.95,9.0,6.4,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.09583333333333334,0.09583333333333334,0.14722222222222223,4,42
|
||||||
12172.0,Ryan Helsley,2025 Season,Reserve,R,0.0,0.0,2.0,0.0,0.0,0.0,4.95,6.3,0.0,6.4,5.0,0.0,0.0,43.0,1.0,1.05,0.0,6.2,1.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19583333333333333,0.19583333333333333,0.26944444444444443,0.0,20.0,0.0,1.0,1.0,3.0,#1WR-C,3.0,24.0,0.0,3.0,0.0,0.0,0.0,6.0,5.1,0.0,4.75,5.0,0.0,0.0,33.0,8.0,0.0,4.0,9.9,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1837962962962963,0.1837962962962963,0.2810185185185185,3,0
|
12172.0,Ryan Helsley,2025 Season,Reserve,R,0.0,0.0,2.0,0.0,0.0,0.0,4.95,6.3,0.0,6.4,5.0,0.0,0.0,43.0,1.0,1.05,0.0,6.2,1.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19583333333333333,0.19583333333333333,0.26944444444444443,0.0,20.0,0.0,1.0,1.0,3.0,#1WR-C,3.0,24.0,0.0,3.0,0.0,0.0,0.0,6.0,5.1,0.0,4.75,5.0,0.0,0.0,33.0,8.0,0.0,4.0,9.9,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1837962962962963,0.1837962962962963,0.2810185185185185,3,0
|
||||||
12173.0,Tyler Kinley,2025 Season,MVP,R,0.0,0.0,2.0,0.0,0.0,3.85,0.0,2.75,2.75,0.0,5.0,0.0,0.0,42.0,0.0,8.0,5.0,5.4,2.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11898148148148148,0.11898148148148148,0.1824074074074074,4.0,17.0,9.0,1.0,1.0,1.0,#1WR-C,2.0,24.0,0.0,1.0,0.0,0.0,0.0,3.35,3.2,0.0,2.75,5.0,0.0,0.0,38.0,0.0,9.65,4.0,4.8,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11388888888888889,0.11388888888888889,0.1587962962962963,4,0
|
12173.0,Tyler Kinley,2025 Season,MVP,R,0.0,0.0,2.0,0.0,0.0,3.85,0.0,2.75,2.75,0.0,5.0,0.0,0.0,42.0,0.0,8.0,5.0,5.4,2.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11898148148148148,0.11898148148148148,0.1824074074074074,4.0,17.0,9.0,1.0,1.0,1.0,#1WR-C,2.0,24.0,0.0,1.0,0.0,0.0,0.0,3.35,3.2,0.0,2.75,5.0,0.0,0.0,38.0,0.0,9.65,4.0,4.8,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11388888888888889,0.11388888888888889,0.1587962962962963,4,0
|
||||||
12174.0,Enyel De Los Santos,2025 Season,Reserve,R,0.0,0.0,3.0,0.0,0.0,8.0,0.0,4.75,4.75,0.0,5.0,0.0,0.0,24.0,4.0,9.0,6.0,5.25,5.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19907407407407407,0.19907407407407407,0.3148148148148148,4.0,6.0,4.0,1.0,1.0,,#1WR-C,3.0,24.0,0.0,2.0,0.0,0.0,0.0,4.25,3.4,0.0,3.25,5.0,0.0,0.0,43.0,0.0,0.75,5.0,5.6,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13333333333333333,0.13333333333333333,0.20046296296296295,4,51
|
12174.0,Enyel De Los Santos,2025 Season,Reserve,R,0.0,0.0,3.0,0.0,0.0,8.0,0.0,4.75,4.75,0.0,5.0,0.0,0.0,24.0,4.0,9.0,6.0,5.25,5.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19907407407407407,0.19907407407407407,0.3148148148148148,4.0,6.0,4.0,1.0,1.0,,#1WR-C,3.0,24.0,0.0,2.0,0.0,0.0,0.0,4.25,3.4,0.0,3.25,5.0,0.0,0.0,43.0,0.0,0.75,5.0,5.6,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13333333333333333,0.13333333333333333,0.20046296296296295,4,51
|
||||||
12175.0,Lake Bachar,2025 Season,All-Star,R,0.0,0.0,2.0,1.2,0.0,0.0,2.2,2.8,0.0,1.95,5.0,0.0,0.0,43.0,4.0,4.8,6.0,5.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10787037037037037,0.10787037037037037,0.17824074074074073,0.0,14.0,9.0,1.0,1.0,0.0,#1WR-C,1.0,24.0,0.0,4.0,0.0,0.0,0.0,4.65,3.4,0.0,3.4,5.0,0.0,0.0,43.0,0.0,4.35,5.0,5.6,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1476851851851852,0.1476851851851852,0.2462962962962963,2,0
|
12175.0,Lake Bachar,2025 Season,All-Star,R,0.0,0.0,2.0,1.2,0.0,0.0,2.2,2.8,0.0,1.95,5.0,0.0,0.0,43.0,4.0,4.8,6.0,5.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10787037037037037,0.10787037037037037,0.17824074074074073,0.0,14.0,9.0,1.0,1.0,0.0,#1WR-C,1.0,24.0,0.0,4.0,0.0,0.0,0.0,4.65,3.4,0.0,3.4,5.0,0.0,0.0,43.0,0.0,4.35,5.0,5.6,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1476851851851852,0.1476851851851852,0.2462962962962963,2,0
|
||||||
12176.0,Seranthony Dominguez,2025 Season,All-Star,R,0.0,0.4,3.0,0.0,0.0,0.0,4.5,5.8,0.0,5.85,5.0,0.0,0.0,38.95,0.0,5.4,0.0,1.4,8.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19027777777777774,0.19027777777777774,0.2847222222222222,0.0,20.0,4.0,1.0,1.0,0.0,#1WR-C,1.0,24.0,0.0,0.0,0.0,0.0,2.2,0.0,0.0,1.7,0.0,5.0,0.0,0.0,56.95,0.0,4.05,1.05,1.9,6.15,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.05925925925925926,0.05925925925925926,0.07962962962962965,5,33
|
12176.0,Seranthony Dominguez,2025 Season,All-Star,R,0.0,0.0,3.0,0.0,0.0,0.0,4.9,5.8,0.0,2.8,5.0,0.0,0.0,31.0,5.0,2.1,4.0,6.2,8.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16203703703703703,0.16203703703703703,0.2490740740740741,0.0,20.0,4.0,1.0,1.0,0.0,#1WR-C,1.0,24.0,0.0,0.0,0.0,0.0,2.2,0.0,0.0,1.7,0.0,5.0,0.0,0.0,51.0,4.0,1.8,4.0,9.0,0.3,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.05925925925925926,0.05925925925925926,0.07962962962962963,5,33
|
||||||
12177.0,Jacob Webb,2025 Season,MVP,R,0.0,0.0,2.0,0.0,0.0,2.4,0.0,0.0,6.8,0.0,5.0,0.0,0.0,31.95,0.0,13.05,4.2,3.25,10.35,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11759259259259258,0.11759259259259258,0.1675925925925926,0.0,0.0,7.0,1.0,1.0,0.0,#1WR-C,1.0,24.0,1.15,3.0,0.0,0.0,0.0,3.2,2.2,0.0,1.95,5.0,0.0,0.0,31.95,0.0,11.1,3.4,2.4,13.65,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11574074074074074,0.11574074074074074,0.21898148148148147,3,0
|
12177.0,Jacob Webb,2025 Season,MVP,R,0.0,0.0,2.0,0.0,0.0,2.4,0.0,0.0,6.8,0.0,5.0,0.0,0.0,37.0,0.0,6.6,10.0,5.0,4.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1175925925925926,0.1175925925925926,0.1675925925925926,0.0,0.0,7.0,1.0,1.0,0.0,#1WR-C,1.0,24.0,1.1,3.0,0.0,0.0,0.0,3.25,2.2,0.0,1.9,5.0,0.0,0.0,33.0,4.0,2.65,9.0,7.8,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11527777777777778,0.11527777777777778,0.2175925925925926,3,0
|
||||||
12178.0,Eric Lauer,2025 Season,All-Star,L,0.0,0.0,3.0,0.0,0.0,0.0,3.8,4.25,0.0,3.8,5.0,0.0,0.0,34.0,9.0,8.2,0.0,1.75,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14675925925925926,0.14675925925925926,0.22361111111111112,0.0,0.0,4.0,4.0,3.0,,#1WL-C,1.0,24.0,0.0,3.0,0.0,0.0,0.0,5.9,2.4,0.0,2.5,5.0,0.0,0.0,39.0,5.0,0.1,4.0,5.6,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13703703703703704,0.13703703703703704,0.23333333333333334,4,51
|
12178.0,Eric Lauer,2025 Season,All-Star,L,0.0,0.0,3.0,0.0,0.0,0.0,3.8,4.25,0.0,3.8,5.0,0.0,0.0,34.0,9.0,8.2,0.0,1.75,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14675925925925926,0.14675925925925926,0.22361111111111112,0.0,0.0,4.0,4.0,3.0,,#1WL-C,1.0,24.0,0.0,3.0,0.0,0.0,0.0,5.9,2.4,0.0,2.5,5.0,0.0,0.0,39.0,5.0,0.1,4.0,5.6,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13703703703703704,0.13703703703703704,0.23333333333333334,4,51
|
||||||
12179.0,Caleb Ferguson,2025 Season,Starter,L,0.0,0.0,0.0,0.0,0.0,1.6,0.0,0.0,7.8,0.0,5.0,0.0,0.0,31.0,2.0,6.4,0.0,8.0,17.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11018518518518519,0.11018518518518519,0.125,0.0,3.0,8.0,1.0,1.0,,#1WL-C,1.0,24.0,0.0,1.0,0.0,0.0,0.0,6.2,5.7,0.0,5.1,5.0,0.0,0.0,32.0,7.0,4.8,4.0,7.3,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18518518518518517,0.18518518518518517,0.2564814814814815,5,0
|
12179.0,Caleb Ferguson,2025 Season,Starter,L,0.0,0.0,0.0,0.0,0.0,1.6,0.0,0.0,7.8,0.0,5.0,0.0,0.0,31.0,2.0,6.4,0.0,8.0,17.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11018518518518519,0.11018518518518519,0.125,0.0,3.0,8.0,1.0,1.0,,#1WL-C,1.0,24.0,0.0,1.0,0.0,0.0,0.0,6.2,5.7,0.0,5.1,5.0,0.0,0.0,32.0,7.0,4.8,4.0,7.3,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18518518518518517,0.18518518518518517,0.2564814814814815,5,0
|
||||||
12180.0,Lucas Erceg,2025 Season,Starter,R,0.0,0.0,0.0,0.0,0.0,0.0,4.05,3.75,0.0,3.4,5.0,0.0,0.0,35.0,4.0,1.95,9.0,6.25,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12685185185185185,0.12685185185185185,0.16435185185185186,0.0,10.0,5.0,1.0,1.0,0.0,#1WR-C,3.0,24.0,0.0,3.0,0.0,0.0,3.6,0.0,6.65,6.6,0.0,5.0,0.0,0.0,28.0,4.0,4.0,5.0,6.75,6.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19305555555555556,0.19305555555555556,0.26805555555555555,2,46
|
12180.0,Lucas Erceg,2025 Season,Starter,R,0.0,0.0,0.0,0.0,0.0,0.0,4.05,3.75,0.0,3.4,5.0,0.0,0.0,35.0,4.0,1.95,9.0,6.25,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12685185185185185,0.12685185185185185,0.16435185185185186,0.0,10.0,5.0,1.0,1.0,0.0,#1WR-C,3.0,24.0,0.0,3.0,0.0,0.0,3.6,0.0,6.65,6.6,0.0,5.0,0.0,0.0,28.0,4.0,4.0,5.0,6.75,6.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19305555555555556,0.19305555555555556,0.26805555555555555,2,46
|
||||||
@ -6417,7 +6417,7 @@ player_id,player_name,cardset_name,rarity,hand,variant,homerun_vl,bp_homerun_vl,
|
|||||||
12196.0,Garrett Whitlock,2025 Season,MVP,R,0.0,0.0,0.0,0.0,0.0,0.0,2.4,4.25,0.0,4.2,5.0,0.0,0.0,45.0,0.0,1.6,6.0,4.75,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12361111111111112,0.12361111111111112,0.14583333333333334,0.0,8.0,-1.0,1.0,1.0,0.0,#1WR-C,1.0,24.0,0.0,0.0,0.0,0.0,0.0,3.5,4.75,0.0,4.5,5.0,0.0,0.0,39.0,4.0,2.5,10.0,4.0,0.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1412037037037037,0.1412037037037037,0.1736111111111111,4,50
|
12196.0,Garrett Whitlock,2025 Season,MVP,R,0.0,0.0,0.0,0.0,0.0,0.0,2.4,4.25,0.0,4.2,5.0,0.0,0.0,45.0,0.0,1.6,6.0,4.75,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12361111111111112,0.12361111111111112,0.14583333333333334,0.0,8.0,-1.0,1.0,1.0,0.0,#1WR-C,1.0,24.0,0.0,0.0,0.0,0.0,0.0,3.5,4.75,0.0,4.5,5.0,0.0,0.0,39.0,4.0,2.5,10.0,4.0,0.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1412037037037037,0.1412037037037037,0.1736111111111111,4,50
|
||||||
12197.0,Griffin Jax,2025 Season,Reserve,R,0.0,1.3,2.0,0.0,0.0,0.0,6.1,5.8,0.0,6.05,5.0,0.0,0.0,35.0,4.0,0.6,4.0,4.0,2.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.21064814814814814,0.21064814814814814,0.33101851851851855,0.0,0.0,5.0,1.0,1.0,,#1WR-C,3.0,24.0,0.0,1.0,0.0,0.0,0.0,2.85,3.75,0.0,3.75,5.0,0.0,0.0,45.0,4.0,0.15,4.0,7.0,1.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12361111111111112,0.12361111111111112,0.1638888888888889,4,38
|
12197.0,Griffin Jax,2025 Season,Reserve,R,0.0,1.3,2.0,0.0,0.0,0.0,6.1,5.8,0.0,6.05,5.0,0.0,0.0,35.0,4.0,0.6,4.0,4.0,2.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.21064814814814814,0.21064814814814814,0.33101851851851855,0.0,0.0,5.0,1.0,1.0,,#1WR-C,3.0,24.0,0.0,1.0,0.0,0.0,0.0,2.85,3.75,0.0,3.75,5.0,0.0,0.0,45.0,4.0,0.15,4.0,7.0,1.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12361111111111112,0.12361111111111112,0.1638888888888889,4,38
|
||||||
12198.0,Daysbel Hernandez,2025 Season,All-Star,R,0.0,0.0,1.0,0.0,0.0,0.0,2.55,2.4,0.0,2.4,0.0,0.0,0.0,49.0,0.0,8.45,5.0,6.6,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.07268518518518519,0.07268518518518519,0.11018518518518519,0.0,11.0,3.0,1.0,1.0,,#1WR-C,3.0,24.0,0.0,2.0,0.0,0.0,0.0,3.75,6.1,0.0,3.0,5.0,0.0,0.0,23.0,4.0,1.25,9.0,7.9,14.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15138888888888888,0.15138888888888888,0.21388888888888888,4,0
|
12198.0,Daysbel Hernandez,2025 Season,All-Star,R,0.0,0.0,1.0,0.0,0.0,0.0,2.55,2.4,0.0,2.4,0.0,0.0,0.0,49.0,0.0,8.45,5.0,6.6,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.07268518518518519,0.07268518518518519,0.11018518518518519,0.0,11.0,3.0,1.0,1.0,,#1WR-C,3.0,24.0,0.0,2.0,0.0,0.0,0.0,3.75,6.1,0.0,3.0,5.0,0.0,0.0,23.0,4.0,1.25,9.0,7.9,14.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15138888888888888,0.15138888888888888,0.21388888888888888,4,0
|
||||||
12199.0,Andres Munoz,2025 Season,Hall of Fame,R,0.0,0.0,0.0,0.0,0.0,0.0,2.9,1.5,0.0,1.4,5.0,0.0,0.0,53.95,0.0,2.5,1.25,1.9,8.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.07685185185185185,0.07685185185185185,0.1037037037037037,0.0,20.0,4.0,1.0,1.0,4.0,#1WR-C,2.0,24.0,0.0,0.0,0.0,0.0,0.0,2.7,0.0,0.0,6.45,5.0,0.0,0.0,49.95,0.0,4.2,1.2,1.5,8.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10787037037037038,0.10787037037037038,0.1328703703703704,4,0
|
12199.0,Andres Munoz,2025 Season,Hall of Fame,R,0.0,0.0,0.0,0.0,0.0,0.0,2.9,1.5,0.0,1.4,5.0,0.0,0.0,41.0,4.0,2.1,5.0,5.5,8.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.07685185185185185,0.07685185185185185,0.1037037037037037,0.0,20.0,4.0,1.0,1.0,4.0,#1WR-C,2.0,24.0,0.0,0.0,0.0,0.0,0.0,2.7,0.0,0.0,6.4,5.0,0.0,0.0,51.0,4.0,0.3,4.0,5.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10740740740740741,0.10740740740740741,0.13240740740740742,4,0
|
||||||
12200.0,Greg Weissert,2025 Season,Starter,R,0.0,0.0,0.0,0.0,0.0,0.0,5.05,3.9,0.0,3.8,5.0,0.0,0.0,33.0,4.0,1.95,4.0,7.1,11.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1412037037037037,0.1412037037037037,0.18796296296296297,0.0,3.0,-1.0,1.0,1.0,0.0,#1WR-C,1.0,24.0,0.0,2.0,0.0,0.0,0.0,5.75,3.75,0.0,3.5,5.0,0.0,0.0,42.0,4.0,2.25,4.0,5.25,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1527777777777778,0.1527777777777778,0.2337962962962963,3,0
|
12200.0,Greg Weissert,2025 Season,Starter,R,0.0,0.0,0.0,0.0,0.0,0.0,5.05,3.9,0.0,3.8,5.0,0.0,0.0,33.0,4.0,1.95,4.0,7.1,11.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1412037037037037,0.1412037037037037,0.18796296296296297,0.0,3.0,-1.0,1.0,1.0,0.0,#1WR-C,1.0,24.0,0.0,2.0,0.0,0.0,0.0,5.75,3.75,0.0,3.5,5.0,0.0,0.0,42.0,4.0,2.25,4.0,5.25,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1527777777777778,0.1527777777777778,0.2337962962962963,3,0
|
||||||
12201.0,Ryan Walker,2025 Season,Reserve,R,0.0,0.0,2.0,0.0,0.0,0.0,6.8,4.8,0.0,4.75,5.0,0.0,0.0,39.0,4.0,1.2,6.0,5.2,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1837962962962963,0.1837962962962963,0.274537037037037,9.0,3.0,-5.0,1.0,1.0,2.0,#1WR-C,3.0,24.0,0.0,1.0,0.0,0.0,4.0,0.0,5.5,5.4,0.0,5.0,0.0,0.0,31.0,0.0,5.0,4.0,6.5,11.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16574074074074074,0.16574074074074074,0.21666666666666667,2,0
|
12201.0,Ryan Walker,2025 Season,Reserve,R,0.0,0.0,2.0,0.0,0.0,0.0,6.8,4.8,0.0,4.75,5.0,0.0,0.0,39.0,4.0,1.2,6.0,5.2,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1837962962962963,0.1837962962962963,0.274537037037037,9.0,3.0,-5.0,1.0,1.0,2.0,#1WR-C,3.0,24.0,0.0,1.0,0.0,0.0,4.0,0.0,5.5,5.4,0.0,5.0,0.0,0.0,31.0,0.0,5.0,4.0,6.5,11.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16574074074074074,0.16574074074074074,0.21666666666666667,2,0
|
||||||
12202.0,Edwin Uceta,2025 Season,All-Star,R,0.0,0.0,4.0,0.0,0.0,0.0,3.4,3.35,0.0,3.25,5.0,0.0,0.0,36.0,5.0,3.6,4.0,5.65,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13425925925925927,0.13425925925925927,0.2212962962962963,11.0,0.0,4.0,1.0,1.0,0.0,#1WR-C,1.0,24.0,0.0,2.0,0.0,0.0,0.0,4.25,3.4,0.0,3.2,5.0,0.0,0.0,45.0,4.0,0.75,6.0,4.0,0.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13287037037037036,0.13287037037037036,0.2,3,0
|
12202.0,Edwin Uceta,2025 Season,All-Star,R,0.0,0.0,4.0,0.0,0.0,0.0,3.4,3.35,0.0,3.25,5.0,0.0,0.0,36.0,5.0,3.6,4.0,5.65,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13425925925925927,0.13425925925925927,0.2212962962962963,11.0,0.0,4.0,1.0,1.0,0.0,#1WR-C,1.0,24.0,0.0,2.0,0.0,0.0,0.0,4.25,3.4,0.0,3.2,5.0,0.0,0.0,45.0,4.0,0.75,6.0,4.0,0.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13287037037037036,0.13287037037037036,0.2,3,0
|
||||||
@ -6434,23 +6434,23 @@ player_id,player_name,cardset_name,rarity,hand,variant,homerun_vl,bp_homerun_vl,
|
|||||||
12213.0,Chase Shugart,2025 Season,All-Star,R,0.0,0.0,3.0,2.5,0.0,2.2,0.0,4.3,2.7,0.0,5.0,0.0,0.0,20.0,0.0,15.0,6.0,5.0,13.3,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14537037037037037,0.14537037037037037,0.2537037037037037,0.0,13.0,9.0,1.0,1.0,,#1WR-C,1.0,24.0,0.0,2.0,0.0,0.0,0.0,5.6,1.7,0.0,1.6,5.0,0.0,0.0,29.0,0.0,10.4,9.0,6.3,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11481481481481481,0.11481481481481481,0.19444444444444445,4,0
|
12213.0,Chase Shugart,2025 Season,All-Star,R,0.0,0.0,3.0,2.5,0.0,2.2,0.0,4.3,2.7,0.0,5.0,0.0,0.0,20.0,0.0,15.0,6.0,5.0,13.3,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14537037037037037,0.14537037037037037,0.2537037037037037,0.0,13.0,9.0,1.0,1.0,,#1WR-C,1.0,24.0,0.0,2.0,0.0,0.0,0.0,5.6,1.7,0.0,1.6,5.0,0.0,0.0,29.0,0.0,10.4,9.0,6.3,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11481481481481481,0.11481481481481481,0.19444444444444445,4,0
|
||||||
12214.0,Brendon Little,2025 Season,MVP,L,0.0,0.0,2.0,0.0,0.0,0.0,3.4,2.75,0.0,2.5,5.0,0.0,0.0,39.0,9.0,2.6,4.0,6.25,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1125,0.1125,0.17175925925925925,4.0,20.0,-5.0,1.0,1.0,,#1WL-C,1.0,24.0,0.0,0.0,0.0,0.0,3.0,0.0,4.0,3.8,0.0,5.0,0.0,0.0,45.0,4.0,2.0,4.0,8.0,0.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12314814814814815,0.12314814814814815,0.15092592592592594,2,51
|
12214.0,Brendon Little,2025 Season,MVP,L,0.0,0.0,2.0,0.0,0.0,0.0,3.4,2.75,0.0,2.5,5.0,0.0,0.0,39.0,9.0,2.6,4.0,6.25,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1125,0.1125,0.17175925925925925,4.0,20.0,-5.0,1.0,1.0,,#1WL-C,1.0,24.0,0.0,0.0,0.0,0.0,3.0,0.0,4.0,3.8,0.0,5.0,0.0,0.0,45.0,4.0,2.0,4.0,8.0,0.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12314814814814815,0.12314814814814815,0.15092592592592594,2,51
|
||||||
12215.0,Edward Cabrera,2025 Season,Starter,R,0.0,1.15,2.0,0.0,0.0,0.0,3.9,3.9,0.0,3.9,5.0,0.0,0.0,37.95,0.0,6.15,1.6,1.7,11.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1513888888888889,0.1513888888888889,0.24722222222222218,0.0,12.0,8.0,5.0,1.0,,#1WR-C,1.0,24.0,0.05,2.0,0.0,0.0,0.0,4.2,4.25,0.0,4.2,5.0,0.0,0.0,39.95,0.0,4.7,1.2,1.9,11.55,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15,0.15,0.21805555555555556,4,0
|
12215.0,Edward Cabrera,2025 Season,Starter,R,0.0,1.15,2.0,0.0,0.0,0.0,3.9,3.9,0.0,3.9,5.0,0.0,0.0,37.95,0.0,6.15,1.6,1.7,11.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1513888888888889,0.1513888888888889,0.24722222222222218,0.0,12.0,8.0,5.0,1.0,,#1WR-C,1.0,24.0,0.05,2.0,0.0,0.0,0.0,4.2,4.25,0.0,4.2,5.0,0.0,0.0,39.95,0.0,4.7,1.2,1.9,11.55,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15,0.15,0.21805555555555556,4,0
|
||||||
12216.0,Camilo Doval,2025 Season,All-Star,R,0.0,0.45,1.0,0.0,0.0,0.0,3.6,3.2,0.0,2.55,5.0,0.0,0.0,43.95,0.0,5.4,0.0,2.1,11.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11851851851851852,0.11851851851851852,0.17824074074074073,18.0,12.0,8.0,1.0,1.0,2.0,#1WR-C,3.0,24.0,0.4,1.0,0.0,0.0,0.0,2.55,5.4,0.0,5.1,5.0,0.0,0.0,37.95,0.0,4.55,1.2,3.2,12.65,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15231481481481482,0.15231481481481482,0.20092592592592592,5,30
|
12216.0,Camilo Doval,2025 Season,All-Star,R,0.0,0.0,1.0,0.0,0.0,0.0,4.05,3.2,0.0,2.5,5.0,0.0,0.0,41.0,4.0,1.95,4.0,4.8,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11805555555555555,0.11805555555555555,0.16944444444444445,18.0,12.0,8.0,1.0,1.0,2.0,#1WR-C,3.0,24.0,0.0,1.0,0.0,0.0,0.0,2.95,5.4,0.0,5.1,5.0,0.0,0.0,39.0,4.0,1.05,5.0,9.6,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15231481481481482,0.15231481481481482,0.1935185185185185,5,30
|
||||||
12217.0,John King,2025 Season,Replacement,L,0.0,0.0,2.0,0.0,0.0,0.0,4.05,5.6,0.0,5.2,5.0,0.0,0.0,20.0,6.0,5.95,4.0,7.4,12.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1699074074074074,0.1699074074074074,0.2351851851851852,0.0,12.0,3.0,1.0,1.0,,#1WL-C,3.0,24.0,2.2,2.0,0.0,0.0,0.0,2.8,11.5,0.0,11.4,5.0,0.0,0.0,17.0,5.0,4.0,0.0,3.5,11.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.29074074074074074,0.29074074074074074,0.40555555555555556,1,0
|
12217.0,John King,2025 Season,Replacement,L,0.0,0.0,2.0,0.0,0.0,0.0,4.05,5.6,0.0,5.2,5.0,0.0,0.0,20.0,6.0,5.95,4.0,7.4,12.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1699074074074074,0.1699074074074074,0.2351851851851852,0.0,12.0,3.0,1.0,1.0,,#1WL-C,3.0,24.0,2.2,2.0,0.0,0.0,0.0,2.8,11.5,0.0,11.4,5.0,0.0,0.0,17.0,5.0,4.0,0.0,3.5,11.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.29074074074074074,0.29074074074074074,0.40555555555555556,1,0
|
||||||
12218.0,Max Kranick,2025 Season,Starter,R,0.0,1.1,3.0,0.0,0.0,0.0,4.5,3.2,0.0,2.7,5.0,0.0,0.0,30.0,0.0,5.4,5.0,1.8,14.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14351851851851852,0.14351851851851852,0.2574074074074074,0.0,0.0,-3.0,1.0,2.0,,#1WR-C,1.0,24.0,0.0,1.0,0.0,0.0,0.0,1.7,6.9,0.0,7.0,5.0,0.0,0.0,21.0,4.0,5.3,9.0,6.1,12.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17222222222222222,0.17222222222222222,0.20185185185185187,3,0
|
12218.0,Max Kranick,2025 Season,Starter,R,0.0,1.1,3.0,0.0,0.0,0.0,4.5,3.2,0.0,2.7,5.0,0.0,0.0,30.0,0.0,5.4,5.0,1.8,14.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14351851851851852,0.14351851851851852,0.2574074074074074,0.0,0.0,-3.0,1.0,2.0,,#1WR-C,1.0,24.0,0.0,1.0,0.0,0.0,0.0,1.7,6.9,0.0,7.0,5.0,0.0,0.0,21.0,4.0,5.3,9.0,6.1,12.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17222222222222222,0.17222222222222222,0.20185185185185187,3,0
|
||||||
12219.0,Tobias Myers,2025 Season,Reserve,R,0.0,0.0,0.0,0.0,0.0,0.0,6.300000000000001,6.45,0.0,6.4,5.0,0.0,0.0,26.95,0.0,7.449999999999999,2.4,2.4,15.65,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20046296296296295,0.20046296296296295,0.2587962962962963,6.0,0.0,-5.0,2.0,1.0,,#1WR-C,3.0,24.0,0.55,3.0,0.0,0.0,0.0,3.2,5.7,0.0,5.75,5.0,0.0,0.0,23.95,0.0,10.85,4.25,2.8,13.95,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17777777777777778,0.17777777777777778,0.26435185185185184,2,38
|
12219.0,Tobias Myers,2025 Season,Reserve,R,0.0,0.0,0.0,0.0,0.0,0.0,6.3,6.4,0.0,6.4,5.0,0.0,0.0,31.0,5.0,6.7,5.0,6.6,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2,0.2,0.25833333333333336,6.0,0.0,-5.0,2.0,1.0,,#1WR-C,3.0,24.0,0.0,3.0,0.0,0.0,0.0,3.75,5.7,0.0,5.75,5.0,0.0,0.0,23.0,4.0,5.25,8.0,7.3,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17777777777777778,0.17777777777777778,0.25416666666666665,2,38
|
||||||
12220.0,Jeremiah Estrada,2025 Season,All-Star,R,0.0,1.3,3.0,0.0,0.0,0.0,0.0,1.9,0.0,1.75,5.0,0.0,0.0,50.95,0.0,5.6,1.5,1.2,6.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.08287037037037036,0.08287037037037036,0.16064814814814815,0.0,8.0,9.0,1.0,1.0,,#1WR-C,2.0,24.0,1.15,3.0,0.0,0.0,0.0,4.25,3.8,0.0,3.9,5.0,0.0,0.0,56.8,0.0,1.1,0.0,0.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15833333333333335,0.15833333333333335,0.2712962962962963,4,51
|
12220.0,Jeremiah Estrada,2025 Season,All-Star,R,0.0,1.3,3.0,0.0,0.0,0.0,0.0,1.9,0.0,1.75,5.0,0.0,0.0,39.0,4.0,4.7,10.0,5.1,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.08287037037037037,0.08287037037037037,0.16064814814814815,0.0,8.0,9.0,1.0,1.0,,#1WR-C,2.0,24.0,1.1,3.0,0.0,0.0,0.0,4.3,3.8,0.0,3.9,5.0,0.0,0.0,39.0,4.0,0.6,4.0,8.0,0.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15833333333333333,0.15833333333333333,0.27037037037037037,4,51
|
||||||
12221.0,Matt Sauer,2025 Season,Replacement,R,0.0,4.35,3.0,0.0,0.0,0.0,7.3,7.6,0.0,7.6,5.0,0.0,0.0,22.95,0.0,6.550000000000001,1.35,1.9,11.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.28564814814814815,0.28564814814814815,0.5157407407407407,0.0,7.0,9.0,2.0,1.0,2.0,#1WR-C,1.0,24.0,0.8,3.0,0.0,0.0,0.0,2.5,4.75,0.0,4.75,5.0,0.0,0.0,29.95,0.0,7.9,1.5,2.55,16.3,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15555555555555556,0.15555555555555556,0.24259259259259258,4,0
|
12221.0,Matt Sauer,2025 Season,Replacement,R,0.0,4.35,3.0,0.0,0.0,0.0,7.3,7.6,0.0,7.6,5.0,0.0,0.0,22.95,0.0,6.550000000000001,1.35,1.9,11.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.28564814814814815,0.28564814814814815,0.5157407407407407,0.0,7.0,9.0,2.0,1.0,2.0,#1WR-C,1.0,24.0,0.8,3.0,0.0,0.0,0.0,2.5,4.75,0.0,4.75,5.0,0.0,0.0,29.95,0.0,7.9,1.5,2.55,16.3,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15555555555555556,0.15555555555555556,0.24259259259259258,4,0
|
||||||
12222.0,Mason Englert,2025 Season,Starter,R,0.0,0.0,0.0,0.0,0.0,0.0,3.05,6.9,0.0,7.3,5.0,0.0,0.0,29.0,4.0,1.95,5.0,3.9,11.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18287037037037038,0.18287037037037038,0.2111111111111111,0.0,9.0,9.0,1.0,2.0,,#1WR-C,2.0,24.0,0.0,2.0,0.0,0.0,0.0,2.9,5.7,0.0,5.6,5.0,0.0,0.0,29.0,4.0,5.1,5.0,7.3,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1638888888888889,0.1638888888888889,0.21851851851851853,2,0
|
12222.0,Mason Englert,2025 Season,Starter,R,0.0,0.0,0.0,0.0,0.0,0.0,3.05,6.9,0.0,7.3,5.0,0.0,0.0,29.0,4.0,1.95,5.0,3.9,11.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18287037037037038,0.18287037037037038,0.2111111111111111,0.0,9.0,9.0,1.0,2.0,,#1WR-C,2.0,24.0,0.0,2.0,0.0,0.0,0.0,2.9,5.7,0.0,5.6,5.0,0.0,0.0,29.0,4.0,5.1,5.0,7.3,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1638888888888889,0.1638888888888889,0.21851851851851853,2,0
|
||||||
12223.0,Colin Holderman,2025 Season,Replacement,R,0.0,0.5,2.0,0.0,0.0,0.0,7.45,5.1,0.0,5.4,5.0,0.0,0.0,29.95,0.0,3.8000000000000003,2.1,1.2,16.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20324074074074072,0.20324074074074072,0.3138888888888889,0.0,20.0,9.0,1.0,1.0,1.0,#1WR-C,3.0,24.0,1.0,3.0,0.0,0.0,0.0,5.4,8.9,0.0,8.85,5.0,0.0,0.0,18.95,0.0,6.449999999999999,1.9,3.75,15.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.26064814814814813,0.26064814814814813,0.38009259259259265,4,0
|
12223.0,Colin Holderman,2025 Season,Replacement,R,0.0,0.0,2.0,0.0,0.0,0.0,7.8,5.25,0.0,5.4,5.0,0.0,0.0,35.0,4.0,1.2,8.0,4.75,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20324074074074075,0.20324074074074075,0.30324074074074076,0.0,20.0,9.0,1.0,1.0,1.0,#1WR-C,3.0,24.0,1.0,3.0,0.0,0.0,0.0,5.4,8.9,0.0,8.8,5.0,0.0,0.0,21.0,4.0,0.6,9.0,11.1,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2601851851851852,0.2601851851851852,0.37962962962962965,4,0
|
||||||
12224.0,Keider Montero,2025 Season,Replacement,R,0.0,3.7,2.0,0.0,0.0,0.0,3.9,5.4,0.0,5.1,5.0,0.0,0.0,20.95,0.0,10.1,3.25,2.55,17.05,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2,0.2,0.3666666666666667,0.0,4.0,-3.0,4.0,3.0,,#1WR-C,3.0,24.0,0.65,2.0,0.0,0.0,0.0,2.75,5.9,0.0,5.85,5.0,0.0,0.0,32.95,0.0,6.4,2.1,2.75,12.65,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17268518518518516,0.17268518518518516,0.2439814814814815,2,0
|
12224.0,Keider Montero,2025 Season,Replacement,R,0.0,3.7,2.0,0.0,0.0,0.0,3.9,5.4,0.0,5.1,5.0,0.0,0.0,20.95,0.0,10.1,3.25,2.55,17.05,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2,0.2,0.3666666666666667,0.0,4.0,-3.0,4.0,3.0,,#1WR-C,3.0,24.0,0.65,2.0,0.0,0.0,0.0,2.75,5.9,0.0,5.85,5.0,0.0,0.0,32.95,0.0,6.4,2.1,2.75,12.65,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17268518518518516,0.17268518518518516,0.2439814814814815,2,0
|
||||||
12225.0,Carlos Hernandez,2025 Season,Replacement,R,0.0,0.0,2.0,0.0,0.0,0.0,6.25,8.7,0.0,8.65,5.0,0.0,0.0,26.95,0.0,6.950000000000001,2.1,2.5,9.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.25092592592592594,0.25092592592592594,0.3365740740740741,0.0,20.0,8.0,1.0,1.0,,#1WR-C,3.0,24.0,0.0,2.0,0.0,0.0,0.0,2.7,5.95,0.0,5.9,5.0,0.0,0.0,31.95,0.0,9.15,2.75,1.9,11.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16712962962962963,0.16712962962962963,0.2199074074074074,5,51
|
12225.0,Carlos Hernandez,2025 Season,Replacement,R,0.0,0.0,2.0,0.0,0.0,0.0,6.25,8.7,0.0,8.65,5.0,0.0,0.0,26.95,0.0,6.950000000000001,2.1,2.5,9.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.25092592592592594,0.25092592592592594,0.3365740740740741,0.0,20.0,8.0,1.0,1.0,,#1WR-C,3.0,24.0,0.0,2.0,0.0,0.0,0.0,2.7,5.95,0.0,5.9,5.0,0.0,0.0,31.95,0.0,9.15,2.75,1.9,11.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16712962962962963,0.16712962962962963,0.2199074074074074,5,51
|
||||||
12226.0,Angel Zerpa,2025 Season,Reserve,L,0.0,2.45,0.0,0.0,0.0,0.0,2.5,4.5,0.0,4.5,5.0,0.0,0.0,31.95,1.2,3.3,0.0,4.5,19.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15231481481481482,0.15231481481481482,0.24351851851851852,5.0,3.0,5.0,1.0,1.0,,#1WL-C,3.0,24.0,0.2,2.0,0.0,0.0,0.0,8.75,5.7,0.0,5.7,5.0,0.0,0.0,30.95,1.5,4.4,0.0,1.5,13.3,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.22083333333333333,0.22083333333333333,0.3351851851851852,2,0
|
12226.0,Angel Zerpa,2025 Season,Reserve,L,0.0,2.4,0.0,0.0,0.0,0.0,1.6,5.4,0.0,4.55,5.0,0.0,0.0,40.0,6.0,0.0,4.0,9.6,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15231481481481482,0.15231481481481482,0.2337962962962963,5.0,3.0,5.0,1.0,1.0,,#1WL-C,3.0,24.0,0.0,2.0,0.0,0.0,0.0,8.95,5.6,0.0,5.6,5.0,0.0,0.0,29.0,6.0,1.05,5.0,2.4,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.21898148148148147,0.21898148148148147,0.3296296296296296,2,0
|
||||||
12227.0,Yoendrys Gomez,2025 Season,Reserve,R,0.0,3.6,3.0,0.0,0.0,0.0,3.8,3.75,0.0,3.6,5.0,0.0,0.0,32.0,0.0,9.6,4.0,2.25,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1736111111111111,0.1736111111111111,0.350462962962963,0.0,6.0,6.0,3.0,2.0,1.0,#1WR-C,3.0,24.0,0.0,2.0,0.0,0.0,0.0,2.4,5.1,0.0,5.1,5.0,0.0,0.0,39.0,4.0,1.6,4.0,4.9,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14907407407407408,0.14907407407407408,0.19907407407407407,3,0
|
12227.0,Yoendrys Gomez,2025 Season,Reserve,R,0.0,3.6,3.0,0.0,0.0,0.0,3.8,3.75,0.0,3.6,5.0,0.0,0.0,32.0,0.0,9.6,4.0,2.25,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1736111111111111,0.1736111111111111,0.350462962962963,0.0,6.0,6.0,3.0,2.0,1.0,#1WR-C,3.0,24.0,0.0,2.0,0.0,0.0,0.0,2.4,5.1,0.0,5.1,5.0,0.0,0.0,39.0,4.0,1.6,4.0,4.9,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14907407407407408,0.14907407407407408,0.19907407407407407,3,0
|
||||||
12228.0,Carlos Vargas,2025 Season,Reserve,R,0.0,0.0,2.0,0.0,0.0,0.0,3.3,3.2,0.0,3.2,5.0,0.0,0.0,30.0,0.0,6.7,3.0,5.8,16.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12222222222222222,0.12222222222222222,0.18055555555555555,4.0,13.0,0.0,1.0,1.0,0.0,#1WR-C,1.0,24.0,0.0,3.0,0.0,0.0,0.0,4.75,8.6,0.0,8.6,5.0,0.0,0.0,22.0,0.0,4.25,1.0,4.4,15.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.24027777777777778,0.24027777777777778,0.32592592592592595,2,21
|
12228.0,Carlos Vargas,2025 Season,Reserve,R,0.0,0.0,2.0,0.0,0.0,0.0,3.3,3.2,0.0,3.2,5.0,0.0,0.0,30.0,0.0,6.7,3.0,5.8,16.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12222222222222222,0.12222222222222222,0.18055555555555555,4.0,13.0,0.0,1.0,1.0,0.0,#1WR-C,1.0,24.0,0.0,3.0,0.0,0.0,0.0,4.75,8.6,0.0,8.6,5.0,0.0,0.0,22.0,0.0,4.25,1.0,4.4,15.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.24027777777777778,0.24027777777777778,0.32592592592592595,2,21
|
||||||
12229.0,Eduardo Salazar,2025 Season,Replacement,R,0.0,0.0,4.0,0.0,0.0,10.2,0.0,5.7,5.1,0.0,5.0,0.0,0.0,20.0,0.0,0.0,5.0,8.1,15.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2361111111111111,0.2361111111111111,0.3861111111111111,10.0,20.0,9.0,1.0,1.0,,#1WR-C,1.0,24.0,4.0,2.0,0.0,0.0,0.0,5.5,9.75,0.0,9.6,5.0,0.0,0.0,24.0,5.0,3.5,5.0,3.25,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.29953703703703705,0.29953703703703705,0.48935185185185187,4,0
|
12229.0,Eduardo Salazar,2025 Season,Replacement,R,0.0,0.0,4.0,0.0,0.0,10.2,0.0,5.7,5.1,0.0,5.0,0.0,0.0,20.0,0.0,0.0,5.0,8.1,15.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2361111111111111,0.2361111111111111,0.3861111111111111,10.0,20.0,9.0,1.0,1.0,,#1WR-C,1.0,24.0,4.0,2.0,0.0,0.0,0.0,5.5,9.75,0.0,9.6,5.0,0.0,0.0,24.0,5.0,3.5,5.0,3.25,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.29953703703703705,0.29953703703703705,0.48935185185185187,4,0
|
||||||
12230.0,Collin Snider,2025 Season,Replacement,R,0.0,1.35,4.0,0.0,0.0,16.0,0.0,4.5,4.25,0.0,5.0,0.0,0.0,29.0,4.0,1.65,4.0,4.5,0.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2833333333333333,0.2833333333333333,0.524537037037037,0.0,8.0,9.0,1.0,1.0,,#1WR-C,1.0,24.0,0.0,3.0,0.0,0.0,0.0,5.7,3.3,0.0,3.25,5.0,0.0,0.0,34.0,4.0,3.3,9.0,6.7,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15046296296296297,0.15046296296296297,0.2449074074074074,3,51
|
12230.0,Collin Snider,2025 Season,Replacement,R,0.0,1.35,4.0,0.0,0.0,16.0,0.0,4.5,4.25,0.0,5.0,0.0,0.0,29.0,4.0,1.65,4.0,4.5,0.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2833333333333333,0.2833333333333333,0.524537037037037,0.0,8.0,9.0,1.0,1.0,,#1WR-C,1.0,24.0,0.0,3.0,0.0,0.0,0.0,5.7,3.3,0.0,3.25,5.0,0.0,0.0,34.0,4.0,3.3,9.0,6.7,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15046296296296297,0.15046296296296297,0.2449074074074074,3,51
|
||||||
12231.0,Robert Garcia,2025 Season,Starter,L,0.0,0.0,2.0,0.0,0.0,0.0,4.0,4.95,0.0,5.1,5.0,0.0,0.0,38.0,5.0,0.0,4.0,5.05,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1625,0.1625,0.2273148148148148,5.0,3.0,-2.0,1.0,1.0,1.0,#1WL-C,1.0,24.0,0.0,2.0,0.0,0.0,0.0,2.95,5.1,0.0,5.1,5.0,0.0,0.0,43.0,4.0,5.05,0.0,0.9,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15416666666666667,0.15416666666666667,0.20925925925925926,3,51
|
12231.0,Robert Garcia,2025 Season,Starter,L,0.0,0.0,2.0,0.0,0.0,0.0,4.0,4.95,0.0,5.1,5.0,0.0,0.0,38.0,5.0,0.0,4.0,5.05,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1625,0.1625,0.2273148148148148,5.0,3.0,-2.0,1.0,1.0,1.0,#1WL-C,1.0,24.0,0.0,2.0,0.0,0.0,0.0,2.95,5.1,0.0,5.1,5.0,0.0,0.0,43.0,4.0,5.05,0.0,0.9,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15416666666666667,0.15416666666666667,0.20925925925925926,3,51
|
||||||
12232.0,Jp Sears,2025 Season,Replacement,L,0.0,1.15,3.0,0.0,0.0,0.0,7.65,4.5,0.0,4.5,5.0,0.0,0.0,30.95,2.8,7.05,0.0,1.65,10.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20185185185185187,0.20185185185185187,0.34629629629629627,0.0,1.0,-3.0,5.0,1.0,,#1WL-C,3.0,24.0,1.1,4.0,0.0,0.0,0.0,5.7,3.75,0.0,3.5,5.0,0.0,0.0,28.95,3.2,10.850000000000001,0.0,1.9,11.05,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17175925925925928,0.17175925925925928,0.3106481481481481,2,0
|
12232.0,Jp Sears,2025 Season,Replacement,L,0.0,1.1,3.0,0.0,0.0,0.0,7.7,4.5,0.0,4.5,5.0,0.0,0.0,34.0,5.0,0.2,4.0,4.5,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20185185185185187,0.20185185185185187,0.3453703703703704,0.0,1.0,-3.0,5.0,1.0,,#1WL-C,3.0,24.0,1.1,4.0,0.0,0.0,0.0,5.7,3.75,0.0,3.5,5.0,0.0,0.0,30.0,5.0,5.2,4.0,5.25,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17175925925925925,0.17175925925925925,0.3106481481481482,2,0
|
||||||
12233.0,Valente Bellozo,2025 Season,Replacement,R,0.0,1.9,4.0,0.0,0.0,0.0,5.85,6.55,0.0,6.6,5.0,0.0,0.0,18.95,0.0,9.6,3.9,1.9,14.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.23518518518518516,0.23518518518518516,0.39768518518518514,4.0,0.0,-5.0,2.0,1.0,,#1WR-C,2.0,24.0,1.1,2.0,0.0,0.0,0.0,2.55,3.4,0.0,3.5,5.0,0.0,0.0,25.95,0.0,14.600000000000001,5.7,2.75,12.45,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1300925925925926,0.1300925925925926,0.21203703703703702,2,0
|
12233.0,Valente Bellozo,2025 Season,Replacement,R,0.0,1.9,4.0,0.0,0.0,0.0,5.85,6.55,0.0,6.6,5.0,0.0,0.0,18.95,0.0,9.6,3.9,1.9,14.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.23518518518518516,0.23518518518518516,0.39768518518518514,4.0,0.0,-5.0,2.0,1.0,,#1WR-C,2.0,24.0,1.1,2.0,0.0,0.0,0.0,2.55,3.4,0.0,3.5,5.0,0.0,0.0,25.95,0.0,14.600000000000001,5.7,2.75,12.45,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1300925925925926,0.1300925925925926,0.21203703703703702,2,0
|
||||||
12234.0,Brayan Bello,2025 Season,All-Star,R,0.0,0.1,2.0,0.0,0.0,0.0,4.5,4.2,0.0,3.9,5.0,0.0,0.0,24.95,0.0,8.149999999999999,3.2,3.2,19.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15000000000000002,0.15000000000000002,0.2222222222222222,0.0,6.0,-1.0,6.0,1.0,,#1WR-C,1.0,24.0,0.3,2.0,0.0,0.0,0.0,1.6,6.0,0.0,6.0,5.0,0.0,0.0,28.95,0.0,6.55,1.7,2.8,18.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1611111111111111,0.1611111111111111,0.21203703703703702,3,19
|
12234.0,Brayan Bello,2025 Season,All-Star,R,0.0,0.1,2.0,0.0,0.0,0.0,4.5,4.2,0.0,3.9,5.0,0.0,0.0,24.95,0.0,8.149999999999999,3.2,3.2,19.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15000000000000002,0.15000000000000002,0.2222222222222222,0.0,6.0,-1.0,6.0,1.0,,#1WR-C,1.0,24.0,0.3,2.0,0.0,0.0,0.0,1.6,6.0,0.0,6.0,5.0,0.0,0.0,28.95,0.0,6.55,1.7,2.8,18.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1611111111111111,0.1611111111111111,0.21203703703703702,3,19
|
||||||
12235.0,Randy Rodriguez,2025 Season,MVP,R,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4,5.0,0.0,0.0,51.0,4.0,5.0,4.0,4.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.04537037037037037,0.04537037037037037,0.07314814814814814,0.0,8.0,1.0,1.0,1.0,1.0,#1WR-C,1.0,24.0,0.0,2.0,0.0,0.0,0.0,4.75,5.1,4.75,0.0,5.0,0.0,0.0,33.0,4.0,4.25,10.0,5.9,0.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1675925925925926,0.1675925925925926,0.23935185185185184,4,0
|
12235.0,Randy Rodriguez,2025 Season,MVP,R,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4,5.0,0.0,0.0,51.0,4.0,5.0,4.0,4.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.04537037037037037,0.04537037037037037,0.07314814814814814,0.0,8.0,1.0,1.0,1.0,1.0,#1WR-C,1.0,24.0,0.0,2.0,0.0,0.0,0.0,4.75,5.1,4.75,0.0,5.0,0.0,0.0,33.0,4.0,4.25,10.0,5.9,0.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1675925925925926,0.1675925925925926,0.23935185185185184,4,0
|
||||||
@ -6463,7 +6463,7 @@ player_id,player_name,cardset_name,rarity,hand,variant,homerun_vl,bp_homerun_vl,
|
|||||||
12242.0,Justin Slaten,2025 Season,All-Star,R,0.0,0.0,2.0,0.0,0.0,0.0,0.0,4.25,4.25,0.0,5.0,0.0,0.0,28.0,4.0,5.0,6.0,8.75,11.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1111111111111111,0.1111111111111111,0.1388888888888889,0.0,6.0,9.0,1.0,1.0,0.0,#1WR-C,1.0,24.0,0.0,2.0,0.0,0.0,0.0,3.75,4.5,0.0,4.5,5.0,0.0,0.0,32.0,5.0,1.25,9.0,10.5,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15046296296296297,0.15046296296296297,0.21296296296296297,3,0
|
12242.0,Justin Slaten,2025 Season,All-Star,R,0.0,0.0,2.0,0.0,0.0,0.0,0.0,4.25,4.25,0.0,5.0,0.0,0.0,28.0,4.0,5.0,6.0,8.75,11.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1111111111111111,0.1111111111111111,0.1388888888888889,0.0,6.0,9.0,1.0,1.0,0.0,#1WR-C,1.0,24.0,0.0,2.0,0.0,0.0,0.0,3.75,4.5,0.0,4.5,5.0,0.0,0.0,32.0,5.0,1.25,9.0,10.5,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15046296296296297,0.15046296296296297,0.21296296296296297,3,0
|
||||||
12243.0,Bryan King,2025 Season,Reserve,L,0.0,0.0,3.0,0.0,0.0,0.0,5.8,6.9,0.0,6.7,5.0,0.0,0.0,28.0,4.0,1.2,0.0,4.0,7.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.21666666666666667,0.21666666666666667,0.31203703703703706,0.0,9.0,9.0,1.0,1.0,0.0,#1WL-C,2.0,24.0,1.05,2.0,0.0,0.0,0.0,1.3,3.8,0.0,3.5,5.0,0.0,0.0,43.0,7.0,2.65,4.0,4.2,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12175925925925926,0.12175925925925926,0.19074074074074074,2,38
|
12243.0,Bryan King,2025 Season,Reserve,L,0.0,0.0,3.0,0.0,0.0,0.0,5.8,6.9,0.0,6.7,5.0,0.0,0.0,28.0,4.0,1.2,0.0,4.0,7.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.21666666666666667,0.21666666666666667,0.31203703703703706,0.0,9.0,9.0,1.0,1.0,0.0,#1WL-C,2.0,24.0,1.05,2.0,0.0,0.0,0.0,1.3,3.8,0.0,3.5,5.0,0.0,0.0,43.0,7.0,2.65,4.0,4.2,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12175925925925926,0.12175925925925926,0.19074074074074074,2,38
|
||||||
12244.0,Yennier Cano,2025 Season,Replacement,R,0.0,2.95,2.0,0.0,0.0,0.0,5.1,7.55,0.0,7.6,5.0,0.0,0.0,28.95,0.0,4.2,1.2,1.75,12.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.24722222222222226,0.24722222222222226,0.4041666666666667,5.0,7.0,0.0,1.0,1.0,0.0,#1WR-C,3.0,24.0,0.0,2.0,0.0,0.0,0.0,1.4,6.7,0.0,6.7,5.0,0.0,0.0,33.95,0.0,5.25,1.2,3.2,13.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16944444444444445,0.16944444444444445,0.21018518518518517,2,13
|
12244.0,Yennier Cano,2025 Season,Replacement,R,0.0,2.95,2.0,0.0,0.0,0.0,5.1,7.55,0.0,7.6,5.0,0.0,0.0,28.95,0.0,4.2,1.2,1.75,12.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.24722222222222226,0.24722222222222226,0.4041666666666667,5.0,7.0,0.0,1.0,1.0,0.0,#1WR-C,3.0,24.0,0.0,2.0,0.0,0.0,0.0,1.4,6.7,0.0,6.7,5.0,0.0,0.0,33.95,0.0,5.25,1.2,3.2,13.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16944444444444445,0.16944444444444445,0.21018518518518517,2,13
|
||||||
12245.0,Casey Legumina,2025 Season,Starter,R,0.0,0.95,3.0,0.0,0.0,0.0,4.8,3.2,0.0,2.5,5.0,0.0,0.0,36.95,0.0,7.1,3.5,1.2,10.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14305555555555555,0.14305555555555555,0.25555555555555554,0.0,4.0,9.0,1.0,1.0,,#1WR-C,1.0,24.0,0.7,2.0,0.0,0.0,0.0,3.25,6.0,0.0,5.95,5.0,0.0,0.0,41.95,0.0,3.5,2.2,1.1,7.35,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1796296296296296,0.1796296296296296,0.2569444444444444,3,0
|
12245.0,Casey Legumina,2025 Season,Starter,R,0.0,0.0,3.0,0.0,0.0,0.0,5.75,3.2,0.0,2.5,5.0,0.0,0.0,35.0,2.0,6.25,4.0,4.8,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14305555555555555,0.14305555555555555,0.23796296296296296,0.0,4.0,9.0,1.0,1.0,,#1WR-C,1.0,24.0,0.0,2.0,0.0,0.0,0.0,3.95,6.0,0.0,2.8,5.0,0.0,0.0,40.0,4.0,3.05,5.0,5.2,0.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15046296296296297,0.15046296296296297,0.21481481481481482,3,0
|
||||||
12246.0,Beau Brieske,2025 Season,Replacement,R,0.0,0.0,0.0,0.0,0.0,1.9,0.0,0.0,10.3,0.0,5.0,0.0,0.0,30.0,4.0,1.1,9.0,9.0,8.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1361111111111111,0.1361111111111111,0.1537037037037037,0.0,18.0,9.0,1.0,1.0,2.0,#1WR-C,3.0,24.0,5.6,4.0,0.0,0.0,0.0,6.5,4.75,0.0,4.75,5.0,0.0,0.0,28.0,1.0,4.9,4.0,5.25,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.24166666666666667,0.24166666666666667,0.512962962962963,3,0
|
12246.0,Beau Brieske,2025 Season,Replacement,R,0.0,0.0,0.0,0.0,0.0,1.9,0.0,0.0,10.3,0.0,5.0,0.0,0.0,30.0,4.0,1.1,9.0,9.0,8.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1361111111111111,0.1361111111111111,0.1537037037037037,0.0,18.0,9.0,1.0,1.0,2.0,#1WR-C,3.0,24.0,5.6,4.0,0.0,0.0,0.0,6.5,4.75,0.0,4.75,5.0,0.0,0.0,28.0,1.0,4.9,4.0,5.25,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.24166666666666667,0.24166666666666667,0.512962962962963,3,0
|
||||||
12247.0,Jackson Rutledge,2025 Season,Replacement,R,0.0,4.75,4.0,0.0,0.0,0.0,4.75,7.5,0.0,7.8,5.0,0.0,0.0,18.0,2.0,9.5,4.0,5.5,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2712962962962963,0.2712962962962963,0.5027777777777778,0.0,16.0,5.0,1.0,1.0,,#1WR-C,3.0,24.0,0.0,2.0,0.0,0.0,0.0,4.6,5.1,0.0,4.75,5.0,0.0,0.0,38.0,0.0,4.4,5.0,4.9,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16620370370370371,0.16620370370370371,0.23657407407407408,4,0
|
12247.0,Jackson Rutledge,2025 Season,Replacement,R,0.0,4.75,4.0,0.0,0.0,0.0,4.75,7.5,0.0,7.8,5.0,0.0,0.0,18.0,2.0,9.5,4.0,5.5,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2712962962962963,0.2712962962962963,0.5027777777777778,0.0,16.0,5.0,1.0,1.0,,#1WR-C,3.0,24.0,0.0,2.0,0.0,0.0,0.0,4.6,5.1,0.0,4.75,5.0,0.0,0.0,38.0,0.0,4.4,5.0,4.9,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16620370370370371,0.16620370370370371,0.23657407407407408,4,0
|
||||||
12248.0,Erik Miller,2025 Season,Starter,L,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.9,0.0,5.0,0.0,0.0,42.0,4.0,0.0,4.0,9.0,2.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1425925925925926,0.1425925925925926,0.1425925925925926,0.0,7.0,-3.0,1.0,1.0,,#1WL-C,1.0,24.0,0.0,0.0,0.0,0.0,0.0,6.75,5.1,0.0,4.75,5.0,0.0,0.0,30.0,4.0,1.25,4.0,6.9,11.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17685185185185184,0.17685185185185184,0.23935185185185184,2,0
|
12248.0,Erik Miller,2025 Season,Starter,L,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.9,0.0,5.0,0.0,0.0,42.0,4.0,0.0,4.0,9.0,2.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1425925925925926,0.1425925925925926,0.1425925925925926,0.0,7.0,-3.0,1.0,1.0,,#1WL-C,1.0,24.0,0.0,0.0,0.0,0.0,0.0,6.75,5.1,0.0,4.75,5.0,0.0,0.0,30.0,4.0,1.25,4.0,6.9,11.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17685185185185184,0.17685185185185184,0.23935185185185184,2,0
|
||||||
@ -6493,7 +6493,7 @@ player_id,player_name,cardset_name,rarity,hand,variant,homerun_vl,bp_homerun_vl,
|
|||||||
12272.0,Seth Halvorsen,2025 Season,Replacement,R,0.0,3.55,2.0,0.0,0.0,0.0,4.75,3.8,0.0,3.9,5.0,0.0,0.0,25.0,4.0,2.7,5.0,5.2,12.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18055555555555555,0.18055555555555555,0.3509259259259259,0.0,15.0,-3.0,1.0,1.0,2.0,#1WR-C,3.0,24.0,0.0,3.0,0.0,0.0,0.0,7.75,4.75,0.0,4.75,5.0,0.0,0.0,48.0,0.0,0.25,0.0,0.25,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19675925925925927,0.19675925925925927,0.3101851851851852,3,23
|
12272.0,Seth Halvorsen,2025 Season,Replacement,R,0.0,3.55,2.0,0.0,0.0,0.0,4.75,3.8,0.0,3.9,5.0,0.0,0.0,25.0,4.0,2.7,5.0,5.2,12.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18055555555555555,0.18055555555555555,0.3509259259259259,0.0,15.0,-3.0,1.0,1.0,2.0,#1WR-C,3.0,24.0,0.0,3.0,0.0,0.0,0.0,7.75,4.75,0.0,4.75,5.0,0.0,0.0,48.0,0.0,0.25,0.0,0.25,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19675925925925927,0.19675925925925927,0.3101851851851852,3,23
|
||||||
12273.0,Logan Evans,2025 Season,Reserve,R,0.0,1.15,3.0,0.0,0.0,0.0,3.5,5.1,0.0,5.4,5.0,0.0,0.0,21.95,0.0,11.25,3.5,2.7,16.45,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17731481481481481,0.17731481481481481,0.2833333333333333,0.0,12.0,-1.0,5.0,1.0,,#1WR-C,2.0,24.0,0.9,3.0,0.0,0.0,0.0,4.75,4.5,0.0,4.5,5.0,0.0,0.0,29.95,0.0,7.25,1.9,2.7,14.55,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17268518518518516,0.17268518518518516,0.2833333333333333,3,23
|
12273.0,Logan Evans,2025 Season,Reserve,R,0.0,1.15,3.0,0.0,0.0,0.0,3.5,5.1,0.0,5.4,5.0,0.0,0.0,21.95,0.0,11.25,3.5,2.7,16.45,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17731481481481481,0.17731481481481481,0.2833333333333333,0.0,12.0,-1.0,5.0,1.0,,#1WR-C,2.0,24.0,0.9,3.0,0.0,0.0,0.0,4.75,4.5,0.0,4.5,5.0,0.0,0.0,29.95,0.0,7.25,1.9,2.7,14.55,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17268518518518516,0.17268518518518516,0.2833333333333333,3,23
|
||||||
12274.0,Yuki Matsui,2025 Season,Starter,L,0.0,2.0,4.0,0.0,0.0,0.0,2.7,4.75,0.0,4.5,5.0,0.0,0.0,42.0,5.0,0.3,4.0,4.25,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17083333333333334,0.17083333333333334,0.30694444444444446,0.0,16.0,4.0,1.0,1.0,1.0,#1WL-C,1.0,24.0,0.0,3.0,0.0,0.0,0.0,4.5,2.1,0.0,2.1,5.0,0.0,0.0,36.0,4.0,9.5,0.0,3.9,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1175925925925926,0.1175925925925926,0.20092592592592592,3,0
|
12274.0,Yuki Matsui,2025 Season,Starter,L,0.0,2.0,4.0,0.0,0.0,0.0,2.7,4.75,0.0,4.5,5.0,0.0,0.0,42.0,5.0,0.3,4.0,4.25,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17083333333333334,0.17083333333333334,0.30694444444444446,0.0,16.0,4.0,1.0,1.0,1.0,#1WL-C,1.0,24.0,0.0,3.0,0.0,0.0,0.0,4.5,2.1,0.0,2.1,5.0,0.0,0.0,36.0,4.0,9.5,0.0,3.9,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1175925925925926,0.1175925925925926,0.20092592592592592,3,0
|
||||||
12275.0,Yariel Rodriguez,2025 Season,All-Star,R,0.0,1.2,2.0,0.0,0.0,0.0,1.9,4.5,4.75,0.0,5.0,0.0,0.0,22.95,0.0,7.800000000000001,2.75,5.4,20.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14675925925925926,0.14675925925925926,0.22546296296296298,8.0,5.0,5.0,1.0,1.0,1.0,#1WR-C,3.0,24.0,0.4,2.0,0.0,0.0,2.4,0.0,1.9,1.9,0.0,5.0,0.0,0.0,41.95,0.0,8.3,3.3,2.5,9.35,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.09351851851851851,0.09351851851851851,0.15462962962962962,2,0
|
12275.0,Yariel Rodriguez,2025 Season,All-Star,R,0.0,1.2,2.0,0.0,0.0,0.0,1.9,4.5,4.75,0.0,5.0,0.0,0.0,26.0,4.0,3.9,4.0,9.5,12.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14675925925925926,0.14675925925925926,0.22546296296296298,8.0,5.0,5.0,1.0,1.0,1.0,#1WR-C,3.0,24.0,0.0,2.0,0.0,0.0,2.8,0.0,1.2,2.6,0.0,5.0,0.0,0.0,51.0,4.0,0.0,5.0,4.0,1.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.09351851851851851,0.09351851851851851,0.14722222222222223,2,0
|
||||||
12276.0,Ryan Johnson,2025 Season,Replacement,R,0.0,13.0,0.0,0.0,0.0,0.0,4.5,10.6,0.0,10.6,5.0,0.0,0.0,11.0,6.0,5.5,4.0,2.4,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.3814814814814815,0.3814814814814815,0.7842592592592592,0.0,0.0,9.0,1.0,1.0,1.0,#1WR-C,1.0,24.0,0.0,2.0,0.0,0.0,0.0,0.0,11.0,7.8,0.0,5.0,0.0,0.0,39.0,4.0,0.0,4.0,5.0,1.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2064814814814815,0.2064814814814815,0.23425925925925925,3,0
|
12276.0,Ryan Johnson,2025 Season,Replacement,R,0.0,13.0,0.0,0.0,0.0,0.0,4.5,10.6,0.0,10.6,5.0,0.0,0.0,11.0,6.0,5.5,4.0,2.4,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.3814814814814815,0.3814814814814815,0.7842592592592592,0.0,0.0,9.0,1.0,1.0,1.0,#1WR-C,1.0,24.0,0.0,2.0,0.0,0.0,0.0,0.0,11.0,7.8,0.0,5.0,0.0,0.0,39.0,4.0,0.0,4.0,5.0,1.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2064814814814815,0.2064814814814815,0.23425925925925925,3,0
|
||||||
12281.0,Jesus Luzardo,2025 Promos,Hall of Fame,L,0.0,0.0,0.0,0.0,0.0,0.0,6.7,3.3,0.0,1.0,5.0,0.0,0.0,39.0,7.3,0.0,9.0,7.7,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.125,0.125,0.18703703703703703,0.0,3.0,-3.0,7.0,1.0,,#1WL-C,2.0,25.0,0.0,0.0,0.0,0.0,0.0,5.1,4.5,0.0,4.25,5.0,0.0,0.0,44.0,0.0,0.9,4.0,10.5,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15138888888888888,0.15138888888888888,0.1986111111111111,5,23
|
12281.0,Jesus Luzardo,2025 Promos,Hall of Fame,L,0.0,0.0,0.0,0.0,0.0,0.0,6.7,3.3,0.0,1.0,5.0,0.0,0.0,39.0,7.3,0.0,9.0,7.7,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.125,0.125,0.18703703703703703,0.0,3.0,-3.0,7.0,1.0,,#1WL-C,2.0,25.0,0.0,0.0,0.0,0.0,0.0,5.1,4.5,0.0,4.25,5.0,0.0,0.0,44.0,0.0,0.9,4.0,10.5,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15138888888888888,0.15138888888888888,0.1986111111111111,5,23
|
||||||
12282.0,Andres Munoz,2025 Promos,Hall of Fame,R,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3,0.0,3.4,5.0,0.0,0.0,46.0,8.0,0.0,4.0,2.7,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.08518518518518518,0.08518518518518518,0.08518518518518518,0.0,0.0,9.0,1.0,1.0,4.0,#1WR-C,2.0,25.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4,0.0,0.0,0.0,0.0,62.0,4.0,0.0,4.0,5.0,1.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.022222222222222223,0.022222222222222223,0.022222222222222223,5,0
|
12282.0,Andres Munoz,2025 Promos,Hall of Fame,R,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3,0.0,3.4,5.0,0.0,0.0,46.0,8.0,0.0,4.0,2.7,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.08518518518518518,0.08518518518518518,0.08518518518518518,0.0,0.0,9.0,1.0,1.0,4.0,#1WR-C,2.0,25.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4,0.0,0.0,0.0,0.0,62.0,4.0,0.0,4.0,5.0,1.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.022222222222222223,0.022222222222222223,0.022222222222222223,5,0
|
||||||
@ -6503,7 +6503,7 @@ player_id,player_name,cardset_name,rarity,hand,variant,homerun_vl,bp_homerun_vl,
|
|||||||
12290.0,Tarik Skubal,2025 Promos,Hall of Fame,L,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4,0.0,5.0,0.0,0.0,50.0,4.0,0.0,4.0,5.0,4.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.0824074074074074,0.0824074074074074,0.0824074074074074,1.0,3.0,-5.0,6.0,1.0,,#1WL-C,3.0,25.0,0.0,1.0,0.0,0.0,3.3,0.0,4.2,4.3,0.0,5.0,0.0,0.0,38.0,4.0,4.0,4.0,3.5,7.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13703703703703704,0.13703703703703704,0.1814814814814815,1,0
|
12290.0,Tarik Skubal,2025 Promos,Hall of Fame,L,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4,0.0,5.0,0.0,0.0,50.0,4.0,0.0,4.0,5.0,4.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.0824074074074074,0.0824074074074074,0.0824074074074074,1.0,3.0,-5.0,6.0,1.0,,#1WL-C,3.0,25.0,0.0,1.0,0.0,0.0,3.3,0.0,4.2,4.3,0.0,5.0,0.0,0.0,38.0,4.0,4.0,4.0,3.5,7.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13703703703703704,0.13703703703703704,0.1814814814814815,1,0
|
||||||
12291.0,Randy Rodriguez,2025 Promos,Hall of Fame,R,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5,0.0,1.7,0.0,0.0,0.0,51.0,8.0,3.0,5.0,7.5,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.03888888888888889,0.03888888888888889,0.03888888888888889,0.0,0.0,3.0,1.0,2.0,,#1WR-C,1.0,25.0,0.0,2.0,0.0,0.0,0.0,4.75,4.75,0.0,4.5,5.0,0.0,0.0,33.0,14.0,0.25,5.0,4.25,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16203703703703703,0.16203703703703703,0.2337962962962963,3,0
|
12291.0,Randy Rodriguez,2025 Promos,Hall of Fame,R,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5,0.0,1.7,0.0,0.0,0.0,51.0,8.0,3.0,5.0,7.5,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.03888888888888889,0.03888888888888889,0.03888888888888889,0.0,0.0,3.0,1.0,2.0,,#1WR-C,1.0,25.0,0.0,2.0,0.0,0.0,0.0,4.75,4.75,0.0,4.5,5.0,0.0,0.0,33.0,14.0,0.25,5.0,4.25,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16203703703703703,0.16203703703703703,0.2337962962962963,3,0
|
||||||
12292.0,Cade Smith,2025 Promos,Hall of Fame,R,0.0,0.0,0.0,0.0,0.0,5.7,0.0,3.3,1.0,0.0,5.0,0.0,0.0,51.0,4.0,0.0,4.0,5.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11574074074074074,0.11574074074074074,0.1685185185185185,0.0,0.0,9.0,1.0,1.0,0.0,#1WR-C,3.0,25.0,0.0,0.0,0.0,0.0,0.0,6.3,3.3,0.0,3.25,5.0,0.0,0.0,44.0,4.0,2.7,2.0,6.7,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14212962962962963,0.14212962962962963,0.20046296296296295,3,0
|
12292.0,Cade Smith,2025 Promos,Hall of Fame,R,0.0,0.0,0.0,0.0,0.0,5.7,0.0,3.3,1.0,0.0,5.0,0.0,0.0,51.0,4.0,0.0,4.0,5.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11574074074074074,0.11574074074074074,0.1685185185185185,0.0,0.0,9.0,1.0,1.0,0.0,#1WR-C,3.0,25.0,0.0,0.0,0.0,0.0,0.0,6.3,3.3,0.0,3.25,5.0,0.0,0.0,44.0,4.0,2.7,2.0,6.7,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14212962962962963,0.14212962962962963,0.20046296296296295,3,0
|
||||||
12342.0,Clayton Kershaw,2025 Season,Starter,L,0.0,0.0,2.0,0.0,0.0,0.0,5.1,5.7,0.0,5.7,5.0,0.0,0.0,24.95,2.25,7.5,0.0,3.2,17.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18518518518518517,0.18518518518518517,0.2601851851851852,3.0,9.0,-5.0,5.0,1.0,,#1WL-C,2.0,24.0,0.0,2.0,0.0,0.0,0.0,4.5,4.5,0.0,4.25,5.0,0.0,0.0,26.95,2.2,8.5,0.0,3.2,17.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1550925925925926,0.1550925925925926,0.22453703703703703,2,0
|
12342.0,Clayton Kershaw,2025 Season,Starter,L,0.0,0.0,2.0,0.0,0.0,0.0,5.1,5.7,0.0,5.7,5.0,0.0,0.0,27.0,9.0,0.9,8.0,7.3,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18518518518518517,0.18518518518518517,0.2601851851851852,3.0,9.0,-5.0,5.0,1.0,,#1WL-C,2.0,24.0,0.0,2.0,0.0,0.0,0.0,4.5,4.5,0.0,4.25,5.0,0.0,0.0,32.0,6.0,0.5,4.0,4.5,11.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1550925925925926,0.1550925925925926,0.22453703703703703,2,0
|
||||||
12343.0,Kenley Jansen,2025 Season,MVP,R,0.0,1.5,3.0,0.0,0.0,0.0,2.5,3.25,0.0,2.8,5.0,0.0,0.0,31.0,2.0,11.0,8.0,1.75,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1300925925925926,0.1300925925925926,0.23657407407407408,15.0,0.0,9.0,1.0,1.0,4.0,#1WR-C,1.0,24.0,0.0,2.0,0.0,0.0,0.0,1.8,0.0,0.0,0.0,5.0,0.0,0.0,47.0,0.0,7.2,8.0,4.0,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.049074074074074076,0.049074074074074076,0.09351851851851851,4,51
|
12343.0,Kenley Jansen,2025 Season,MVP,R,0.0,1.5,3.0,0.0,0.0,0.0,2.5,3.25,0.0,2.8,5.0,0.0,0.0,31.0,2.0,11.0,8.0,1.75,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1300925925925926,0.1300925925925926,0.23657407407407408,15.0,0.0,9.0,1.0,1.0,4.0,#1WR-C,1.0,24.0,0.0,2.0,0.0,0.0,0.0,1.8,0.0,0.0,0.0,5.0,0.0,0.0,47.0,0.0,7.2,8.0,4.0,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.049074074074074076,0.049074074074074076,0.09351851851851851,4,51
|
||||||
12344.0,T J Mcfarland,2025 Season,Replacement,L,0.0,0.0,3.0,0.0,0.0,0.0,10.4,9.1,0.0,9.5,5.0,0.0,0.0,24.0,4.0,0.6,0.0,5.9,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.3055555555555556,0.3055555555555556,0.44351851851851853,0.0,13.0,9.0,1.0,1.0,,#1WL-C,3.0,24.0,3.3,2.0,3.75,0.0,0.0,2.7,8.75,0.0,8.8,5.0,0.0,0.0,12.0,10.0,0.0,5.0,10.5,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2851851851851852,0.2851851851851852,0.49907407407407406,2,0
|
12344.0,T J Mcfarland,2025 Season,Replacement,L,0.0,0.0,3.0,0.0,0.0,0.0,10.4,9.1,0.0,9.5,5.0,0.0,0.0,24.0,4.0,0.6,0.0,5.9,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.3055555555555556,0.3055555555555556,0.44351851851851853,0.0,13.0,9.0,1.0,1.0,,#1WL-C,3.0,24.0,3.3,2.0,3.75,0.0,0.0,2.7,8.75,0.0,8.8,5.0,0.0,0.0,12.0,10.0,0.0,5.0,10.5,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2851851851851852,0.2851851851851852,0.49907407407407406,2,0
|
||||||
12345.0,Ryan Pressly,2025 Season,Replacement,R,0.0,1.2,2.0,0.0,0.0,3.25,0.0,7.15,7.25,0.0,5.0,0.0,0.0,30.0,4.0,2.8,6.0,9.6,0.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20694444444444443,0.20694444444444443,0.29814814814814816,0.0,0.0,-3.0,1.0,1.0,1.0,#1WR-C,1.0,24.0,0.0,3.0,0.0,0.0,0.0,6.0,5.6,0.0,2.8,5.0,0.0,0.0,26.0,5.0,0.0,5.0,7.4,12.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17037037037037037,0.17037037037037037,0.2675925925925926,3,0
|
12345.0,Ryan Pressly,2025 Season,Replacement,R,0.0,1.2,2.0,0.0,0.0,3.25,0.0,7.15,7.25,0.0,5.0,0.0,0.0,30.0,4.0,2.8,6.0,9.6,0.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20694444444444443,0.20694444444444443,0.29814814814814816,0.0,0.0,-3.0,1.0,1.0,1.0,#1WR-C,1.0,24.0,0.0,3.0,0.0,0.0,0.0,6.0,5.6,0.0,2.8,5.0,0.0,0.0,26.0,5.0,0.0,5.0,7.4,12.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17037037037037037,0.17037037037037037,0.2675925925925926,3,0
|
||||||
@ -6526,7 +6526,7 @@ player_id,player_name,cardset_name,rarity,hand,variant,homerun_vl,bp_homerun_vl,
|
|||||||
12362.0,Jesus Tinoco,2025 Season,Starter,R,0.0,0.0,2.0,0.0,0.0,2.7,0.0,2.4,2.4,0.0,0.0,0.0,0.0,24.0,5.0,12.0,10.0,16.9,1.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.0787037037037037,0.0787037037037037,0.13148148148148148,0.0,0.0,-1.0,1.0,1.0,2.0,#1WR-C,1.0,24.0,0.0,2.0,0.0,0.0,0.0,6.6,0.0,0.0,14.4,5.0,0.0,0.0,17.0,4.0,9.4,5.0,4.0,11.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.22685185185185186,0.22685185185185186,0.31574074074074077,3,0
|
12362.0,Jesus Tinoco,2025 Season,Starter,R,0.0,0.0,2.0,0.0,0.0,2.7,0.0,2.4,2.4,0.0,0.0,0.0,0.0,24.0,5.0,12.0,10.0,16.9,1.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.0787037037037037,0.0787037037037037,0.13148148148148148,0.0,0.0,-1.0,1.0,1.0,2.0,#1WR-C,1.0,24.0,0.0,2.0,0.0,0.0,0.0,6.6,0.0,0.0,14.4,5.0,0.0,0.0,17.0,4.0,9.4,5.0,4.0,11.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.22685185185185186,0.22685185185185186,0.31574074074074077,3,0
|
||||||
12363.0,Ryan Borucki,2025 Season,Replacement,L,0.0,0.0,0.0,0.0,0.0,0.0,2.25,0.0,0.0,0.0,5.0,0.0,0.0,37.0,2.0,6.75,0.0,9.0,17.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.04398148148148148,0.04398148148148148,0.06481481481481481,8.0,11.0,-3.0,1.0,1.0,,#1WL-C,1.0,24.0,5.6,0.0,0.0,0.0,0.0,8.4,3.0,0.0,9.1,5.0,0.0,0.0,34.0,0.0,0.0,0.0,4.0,9.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.26481481481481484,0.26481481481481484,0.4981481481481482,3,0
|
12363.0,Ryan Borucki,2025 Season,Replacement,L,0.0,0.0,0.0,0.0,0.0,0.0,2.25,0.0,0.0,0.0,5.0,0.0,0.0,37.0,2.0,6.75,0.0,9.0,17.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.04398148148148148,0.04398148148148148,0.06481481481481481,8.0,11.0,-3.0,1.0,1.0,,#1WL-C,1.0,24.0,5.6,0.0,0.0,0.0,0.0,8.4,3.0,0.0,9.1,5.0,0.0,0.0,34.0,0.0,0.0,0.0,4.0,9.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.26481481481481484,0.26481481481481484,0.4981481481481482,3,0
|
||||||
12364.0,Luke Weaver,2025 Season,MVP,R,0.0,0.0,2.0,0.0,0.0,0.0,5.4,0.0,0.0,1.2,5.0,0.0,0.0,43.0,0.0,11.6,4.0,0.0,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.09351851851851851,0.09351851851851851,0.1712962962962963,0.0,3.0,-1.0,1.0,1.0,1.0,#1WR-C,2.0,24.0,0.0,3.0,0.0,0.0,0.0,2.8,3.6,0.0,3.5,5.0,0.0,0.0,46.0,0.0,5.2,8.0,0.4,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1287037037037037,0.1287037037037037,0.1962962962962963,2,26
|
12364.0,Luke Weaver,2025 Season,MVP,R,0.0,0.0,2.0,0.0,0.0,0.0,5.4,0.0,0.0,1.2,5.0,0.0,0.0,43.0,0.0,11.6,4.0,0.0,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.09351851851851851,0.09351851851851851,0.1712962962962963,0.0,3.0,-1.0,1.0,1.0,1.0,#1WR-C,2.0,24.0,0.0,3.0,0.0,0.0,0.0,2.8,3.6,0.0,3.5,5.0,0.0,0.0,46.0,0.0,5.2,8.0,0.4,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1287037037037037,0.1287037037037037,0.1962962962962963,2,26
|
||||||
12365.0,Jose Castillo,2025 Season,Replacement,L,0.0,3.2,0.0,0.0,0.0,1.7,0.0,12.25,12.25,0.0,5.0,0.0,0.0,30.95,0.0,1.9,0.0,3.4,8.35,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.29537037037037034,0.29537037037037034,0.4,20.0,6.0,-1.0,1.0,1.0,,#1WL-C,2.0,24.0,0.4,2.0,0.0,0.0,0.0,7.25,4.25,0.0,4.2,5.0,0.0,0.0,31.95,1.7,5.7,0.0,0.0,16.55,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1814814814814815,0.1814814814814815,0.28750000000000003,3,50
|
12365.0,Jose Castillo,2025 Season,Replacement,L,0.0,3.2,0.0,0.0,0.0,1.7,0.0,12.2,12.3,0.0,5.0,0.0,0.0,27.0,4.0,0.8,4.0,6.1,2.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2953703703703704,0.2953703703703704,0.4,20.0,6.0,-1.0,1.0,1.0,,#1WL-C,2.0,24.0,0.0,2.0,0.0,0.0,0.0,7.5,4.4,0.0,4.2,5.0,0.0,0.0,36.0,4.0,5.5,4.0,4.0,0.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1814814814814815,0.1814814814814815,0.27870370370370373,3,50
|
||||||
12366.0,Ranger Suarez,2025 Season,Starter,L,0.0,0.0,2.0,0.0,0.0,0.0,2.0,4.75,0.0,4.75,5.0,0.0,0.0,35.0,5.0,4.0,3.0,5.25,8.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1388888888888889,0.1388888888888889,0.18518518518518517,0.0,0.0,-2.0,6.0,1.0,,#1WL-C,1.0,24.0,0.0,2.0,0.0,0.0,0.0,4.4,5.9,0.0,2.8,5.0,0.0,0.0,33.0,5.0,0.6,4.0,9.1,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1537037037037037,0.1537037037037037,0.2222222222222222,1,20
|
12366.0,Ranger Suarez,2025 Season,Starter,L,0.0,0.0,2.0,0.0,0.0,0.0,2.0,4.75,0.0,4.75,5.0,0.0,0.0,35.0,5.0,4.0,3.0,5.25,8.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1388888888888889,0.1388888888888889,0.18518518518518517,0.0,0.0,-2.0,6.0,1.0,,#1WL-C,1.0,24.0,0.0,2.0,0.0,0.0,0.0,4.4,5.9,0.0,2.8,5.0,0.0,0.0,33.0,5.0,0.6,4.0,9.1,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1537037037037037,0.1537037037037037,0.2222222222222222,1,20
|
||||||
12367.0,Trevor Megill,2025 Season,Starter,R,0.0,0.0,0.0,0.0,0.0,0.0,4.3,2.75,0.0,2.75,5.0,0.0,0.0,39.0,4.0,2.7,5.0,4.0,7.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11388888888888889,0.11388888888888889,0.1537037037037037,0.0,9.0,9.0,1.0,1.0,6.0,#1WR-C,3.0,24.0,0.0,1.0,0.0,0.0,0.0,8.4,2.8,0.0,2.75,5.0,0.0,0.0,37.0,4.0,4.6,6.0,5.2,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15694444444444444,0.15694444444444444,0.24861111111111112,4,0
|
12367.0,Trevor Megill,2025 Season,Starter,R,0.0,0.0,0.0,0.0,0.0,0.0,4.3,2.75,0.0,2.75,5.0,0.0,0.0,39.0,4.0,2.7,5.0,4.0,7.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11388888888888889,0.11388888888888889,0.1537037037037037,0.0,9.0,9.0,1.0,1.0,6.0,#1WR-C,3.0,24.0,0.0,1.0,0.0,0.0,0.0,8.4,2.8,0.0,2.75,5.0,0.0,0.0,37.0,4.0,4.6,6.0,5.2,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15694444444444444,0.15694444444444444,0.24861111111111112,4,0
|
||||||
12368.0,Ian Gibaut,2025 Season,Reserve,R,0.0,0.0,0.0,0.0,0.0,0.0,3.75,4.5,0.0,4.5,5.0,0.0,0.0,19.0,4.0,6.25,4.0,9.5,17.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1412037037037037,0.1412037037037037,0.17592592592592593,0.0,0.0,-1.0,1.0,1.0,,#1WR-C,3.0,24.0,0.0,4.0,0.0,0.0,6.75,0.0,5.25,5.25,0.0,5.0,0.0,0.0,28.0,0.0,5.0,11.0,4.0,4.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2013888888888889,0.2013888888888889,0.3194444444444444,4,51
|
12368.0,Ian Gibaut,2025 Season,Reserve,R,0.0,0.0,0.0,0.0,0.0,0.0,3.75,4.5,0.0,4.5,5.0,0.0,0.0,19.0,4.0,6.25,4.0,9.5,17.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1412037037037037,0.1412037037037037,0.17592592592592593,0.0,0.0,-1.0,1.0,1.0,,#1WR-C,3.0,24.0,0.0,4.0,0.0,0.0,6.75,0.0,5.25,5.25,0.0,5.0,0.0,0.0,28.0,0.0,5.0,11.0,4.0,4.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2013888888888889,0.2013888888888889,0.3194444444444444,4,51
|
||||||
@ -6546,9 +6546,9 @@ player_id,player_name,cardset_name,rarity,hand,variant,homerun_vl,bp_homerun_vl,
|
|||||||
12382.0,Felix Bautista,2025 Season,Hall of Fame,R,0.0,0.0,1.0,0.0,0.0,3.5,0.0,1.5,0.0,0.0,5.0,0.0,0.0,51.0,4.0,0.0,4.0,5.0,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.07407407407407407,0.07407407407407407,0.12037037037037036,0.0,6.0,8.0,1.0,1.0,5.0,#1WR-C,1.0,24.0,0.0,2.0,0.0,0.0,0.0,2.35,1.6,1.7,0.0,0.0,0.0,0.0,45.0,9.0,1.65,4.0,9.0,2.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.06157407407407407,0.06157407407407407,0.1111111111111111,5,51
|
12382.0,Felix Bautista,2025 Season,Hall of Fame,R,0.0,0.0,1.0,0.0,0.0,3.5,0.0,1.5,0.0,0.0,5.0,0.0,0.0,51.0,4.0,0.0,4.0,5.0,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.07407407407407407,0.07407407407407407,0.12037037037037036,0.0,6.0,8.0,1.0,1.0,5.0,#1WR-C,1.0,24.0,0.0,2.0,0.0,0.0,0.0,2.35,1.6,1.7,0.0,0.0,0.0,0.0,45.0,9.0,1.65,4.0,9.0,2.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.06157407407407407,0.06157407407407407,0.1111111111111111,5,51
|
||||||
12383.0,Jacob Latz,2025 Season,All-Star,L,0.0,0.0,2.0,0.0,0.0,0.0,3.05,1.5,0.0,1.4,5.0,0.0,0.0,32.0,6.0,1.95,4.0,7.5,12.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.0875,0.0875,0.14351851851851852,0.0,5.0,0.0,2.0,1.0,0.0,#1WL-C,1.0,24.0,0.0,2.0,0.0,0.0,0.0,5.1,4.75,0.0,4.75,5.0,0.0,0.0,38.0,6.0,0.9,4.0,4.25,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1675925925925926,0.1675925925925926,0.24259259259259258,4,0
|
12383.0,Jacob Latz,2025 Season,All-Star,L,0.0,0.0,2.0,0.0,0.0,0.0,3.05,1.5,0.0,1.4,5.0,0.0,0.0,32.0,6.0,1.95,4.0,7.5,12.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.0875,0.0875,0.14351851851851852,0.0,5.0,0.0,2.0,1.0,0.0,#1WL-C,1.0,24.0,0.0,2.0,0.0,0.0,0.0,5.1,4.75,0.0,4.75,5.0,0.0,0.0,38.0,6.0,0.9,4.0,4.25,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1675925925925926,0.1675925925925926,0.24259259259259258,4,0
|
||||||
12384.0,Yerry De Los Santos,2025 Season,Reserve,R,0.0,0.0,1.0,0.0,0.0,0.0,5.5,7.25,0.0,7.05,5.0,0.0,0.0,22.0,0.0,0.5,3.0,4.75,21.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2111111111111111,0.2111111111111111,0.2759259259259259,0.0,11.0,0.0,1.0,1.0,,#1WR-C,2.0,24.0,0.0,0.0,0.0,0.0,0.0,3.2,6.75,0.0,6.75,5.0,0.0,0.0,30.0,4.0,0.8,5.0,5.25,11.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17777777777777778,0.17777777777777778,0.2074074074074074,2,0
|
12384.0,Yerry De Los Santos,2025 Season,Reserve,R,0.0,0.0,1.0,0.0,0.0,0.0,5.5,7.25,0.0,7.05,5.0,0.0,0.0,22.0,0.0,0.5,3.0,4.75,21.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2111111111111111,0.2111111111111111,0.2759259259259259,0.0,11.0,0.0,1.0,1.0,,#1WR-C,2.0,24.0,0.0,0.0,0.0,0.0,0.0,3.2,6.75,0.0,6.75,5.0,0.0,0.0,30.0,4.0,0.8,5.0,5.25,11.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17777777777777778,0.17777777777777778,0.2074074074074074,2,0
|
||||||
12386.0,Ryan Rolison,2025 Season,Replacement,L,0.0,1.6,3.0,0.0,0.0,0.0,3.8,5.7,0.0,5.1,5.0,0.0,0.0,19.95,3.2,8.05,0.0,3.8,19.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18703703703703706,0.18703703703703706,0.3083333333333333,7.0,5.0,5.0,1.0,1.0,,#1WL-C,2.0,24.0,7.85,0.0,0.0,0.0,0.0,2.7,9.0,0.0,9.0,5.0,0.0,0.0,18.95,1.2,7.6499999999999995,0.0,3.5,14.15,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.28750000000000003,0.28750000000000003,0.5305555555555556,3,51
|
12386.0,Ryan Rolison,2025 Season,Replacement,L,0.0,1.6,3.0,0.0,0.0,0.0,3.8,5.7,0.0,5.1,5.0,0.0,0.0,24.0,5.0,7.6,4.0,7.3,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18703703703703703,0.18703703703703703,0.30833333333333335,7.0,5.0,5.0,1.0,1.0,,#1WL-C,2.0,24.0,7.8,0.0,0.0,0.0,0.0,2.7,9.0,0.0,9.0,5.0,0.0,0.0,23.0,5.0,7.5,0.0,4.0,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.28703703703703703,0.28703703703703703,0.5287037037037037,3,51
|
||||||
12387.0,Sean Reynolds,2025 Season,All-Star,R,0.0,3.5,3.0,0.0,0.0,0.0,0.0,3.25,0.0,3.2,5.0,0.0,0.0,35.0,4.0,6.5,6.0,4.0,4.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12916666666666668,0.12916666666666668,0.26805555555555555,0.0,7.0,9.0,1.0,1.0,,#1WR-C,2.0,24.0,0.0,1.0,0.0,0.0,0.0,5.7,2.25,0.0,2.25,5.0,0.0,0.0,31.0,4.0,8.3,4.0,6.75,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12222222222222222,0.12222222222222222,0.18888888888888888,2,0
|
12387.0,Sean Reynolds,2025 Season,All-Star,R,0.0,3.5,3.0,0.0,0.0,0.0,0.0,3.25,0.0,3.2,5.0,0.0,0.0,35.0,4.0,6.5,6.0,4.0,4.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12916666666666668,0.12916666666666668,0.26805555555555555,0.0,7.0,9.0,1.0,1.0,,#1WR-C,2.0,24.0,0.0,1.0,0.0,0.0,0.0,5.7,2.25,0.0,2.25,5.0,0.0,0.0,31.0,4.0,8.3,4.0,6.75,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12222222222222222,0.12222222222222222,0.18888888888888888,2,0
|
||||||
12388.0,Steven Cruz,2025 Season,All-Star,R,0.0,0.0,1.0,0.0,0.0,0.0,1.2,3.75,0.0,3.4,5.0,0.0,0.0,41.95,0.0,5.85,1.7,2.2,12.95,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10509259259259258,0.10509259259259258,0.1300925925925926,0.0,4.0,9.0,1.0,1.0,,#1WR-C,1.0,24.0,1.15,2.0,0.0,0.0,0.0,5.4,3.2,0.0,3.2,5.0,0.0,0.0,21.95,0.0,12.350000000000001,3.75,3.2,17.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15231481481481482,0.15231481481481482,0.262037037037037,3,0
|
12388.0,Steven Cruz,2025 Season,All-Star,R,0.0,0.0,1.0,0.0,0.0,0.0,1.2,3.75,0.0,3.4,5.0,0.0,0.0,48.0,4.0,2.8,4.0,5.25,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1050925925925926,0.1050925925925926,0.1300925925925926,0.0,4.0,9.0,1.0,1.0,,#1WR-C,1.0,24.0,1.1,2.0,0.0,0.0,0.0,5.45,3.2,0.0,3.2,5.0,0.0,0.0,26.0,4.0,5.45,6.0,5.8,11.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15231481481481482,0.15231481481481482,0.2611111111111111,3,0
|
||||||
12389.0,Juan Mejia,2025 Season,Starter,R,0.0,1.1,2.0,0.0,0.0,5.1,0.0,5.1,5.1,0.0,5.0,0.0,0.0,34.0,4.0,0.9,5.0,10.8,0.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18425925925925926,0.18425925925925926,0.2898148148148148,0.0,7.0,-1.0,1.0,1.0,1.0,#1WR-C,1.0,24.0,0.0,3.0,0.0,0.0,0.0,4.8,1.9,0.0,1.75,5.0,0.0,0.0,39.0,4.0,3.2,5.0,4.0,4.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11527777777777778,0.11527777777777778,0.2013888888888889,3,51
|
12389.0,Juan Mejia,2025 Season,Starter,R,0.0,1.1,2.0,0.0,0.0,5.1,0.0,5.1,5.1,0.0,5.0,0.0,0.0,34.0,4.0,0.9,5.0,10.8,0.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18425925925925926,0.18425925925925926,0.2898148148148148,0.0,7.0,-1.0,1.0,1.0,1.0,#1WR-C,1.0,24.0,0.0,3.0,0.0,0.0,0.0,4.8,1.9,0.0,1.75,5.0,0.0,0.0,39.0,4.0,3.2,5.0,4.0,4.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11527777777777778,0.11527777777777778,0.2013888888888889,3,51
|
||||||
12390.0,Janson Junk,2025 Season,Reserve,R,0.0,0.0,2.0,0.0,0.0,0.0,7.25,3.0,0.0,9.0,5.0,0.0,0.0,26.0,4.0,0.75,5.0,6.0,11.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.21064814814814814,0.21064814814814814,0.3055555555555556,0.0,4.0,6.0,5.0,4.0,0.0,#1WR-C,2.0,24.0,0.0,0.0,0.0,0.0,0.0,6.0,4.5,0.0,4.5,5.0,0.0,0.0,32.0,0.0,4.0,5.0,7.5,10.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16203703703703703,0.16203703703703703,0.2175925925925926,3,0
|
12390.0,Janson Junk,2025 Season,Reserve,R,0.0,0.0,2.0,0.0,0.0,0.0,7.25,3.0,0.0,9.0,5.0,0.0,0.0,26.0,4.0,0.75,5.0,6.0,11.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.21064814814814814,0.21064814814814814,0.3055555555555556,0.0,4.0,6.0,5.0,4.0,0.0,#1WR-C,2.0,24.0,0.0,0.0,0.0,0.0,0.0,6.0,4.5,0.0,4.5,5.0,0.0,0.0,32.0,0.0,4.0,5.0,7.5,10.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16203703703703703,0.16203703703703703,0.2175925925925926,3,0
|
||||||
12391.0,Ryan Weathers,2025 Season,Reserve,L,0.0,5.5,3.0,0.0,0.0,2.8,0.0,1.2,2.3,0.0,5.0,0.0,0.0,39.0,9.0,0.5,4.0,6.0,0.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14629629629629629,0.14629629629629629,0.36666666666666664,0.0,5.0,9.0,5.0,1.0,,#1WL-C,3.0,24.0,0.0,2.0,0.0,0.0,0.0,5.1,4.8,0.0,4.5,5.0,0.0,0.0,40.0,7.0,0.9,4.0,5.2,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16574074074074074,0.16574074074074074,0.24074074074074073,4,0
|
12391.0,Ryan Weathers,2025 Season,Reserve,L,0.0,5.5,3.0,0.0,0.0,2.8,0.0,1.2,2.3,0.0,5.0,0.0,0.0,39.0,9.0,0.5,4.0,6.0,0.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14629629629629629,0.14629629629629629,0.36666666666666664,0.0,5.0,9.0,5.0,1.0,,#1WL-C,3.0,24.0,0.0,2.0,0.0,0.0,0.0,5.1,4.8,0.0,4.5,5.0,0.0,0.0,40.0,7.0,0.9,4.0,5.2,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16574074074074074,0.16574074074074074,0.24074074074074073,4,0
|
||||||
@ -6568,7 +6568,7 @@ player_id,player_name,cardset_name,rarity,hand,variant,homerun_vl,bp_homerun_vl,
|
|||||||
12405.0,Cole Henry,2025 Season,All-Star,R,0.0,1.2,3.0,0.0,0.0,0.0,5.4,1.9,0.0,1.6,5.0,0.0,0.0,44.0,4.0,1.4,7.0,4.1,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13055555555555556,0.13055555555555556,0.25555555555555554,6.0,8.0,9.0,1.0,1.0,0.0,#1WR-C,1.0,24.0,0.0,2.0,0.0,0.0,2.1,0.0,4.8,4.5,0.0,5.0,0.0,0.0,37.0,0.0,7.0,5.0,7.1,4.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13796296296296295,0.13796296296296295,0.18518518518518517,4,51
|
12405.0,Cole Henry,2025 Season,All-Star,R,0.0,1.2,3.0,0.0,0.0,0.0,5.4,1.9,0.0,1.6,5.0,0.0,0.0,44.0,4.0,1.4,7.0,4.1,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13055555555555556,0.13055555555555556,0.25555555555555554,6.0,8.0,9.0,1.0,1.0,0.0,#1WR-C,1.0,24.0,0.0,2.0,0.0,0.0,2.1,0.0,4.8,4.5,0.0,5.0,0.0,0.0,37.0,0.0,7.0,5.0,7.1,4.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13796296296296295,0.13796296296296295,0.18518518518518517,4,51
|
||||||
12406.0,Eric Orze,2025 Season,Starter,R,0.0,0.0,2.0,0.0,0.0,3.0,0.0,4.2,3.8,0.0,5.0,0.0,0.0,37.0,0.0,8.0,1.0,9.8,5.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13425925925925927,0.13425925925925927,0.18981481481481483,0.0,0.0,1.0,1.0,1.0,1.0,#1WR-C,1.0,24.0,0.0,2.0,0.0,0.0,0.0,6.4,5.7,0.0,5.1,5.0,0.0,0.0,33.0,4.0,0.6,9.0,7.3,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19166666666666668,0.19166666666666668,0.27870370370370373,3,0
|
12406.0,Eric Orze,2025 Season,Starter,R,0.0,0.0,2.0,0.0,0.0,3.0,0.0,4.2,3.8,0.0,5.0,0.0,0.0,37.0,0.0,8.0,1.0,9.8,5.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13425925925925927,0.13425925925925927,0.18981481481481483,0.0,0.0,1.0,1.0,1.0,1.0,#1WR-C,1.0,24.0,0.0,2.0,0.0,0.0,0.0,6.4,5.7,0.0,5.1,5.0,0.0,0.0,33.0,4.0,0.6,9.0,7.3,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19166666666666668,0.19166666666666668,0.27870370370370373,3,0
|
||||||
12407.0,Kyle Harrison,2025 Season,Reserve,L,0.0,3.7,2.0,1.4,0.0,1.9,0.0,2.7,3.2,0.0,5.0,0.0,0.0,33.0,5.0,0.3,4.0,11.0,5.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15185185185185185,0.15185185185185185,0.32592592592592595,0.0,6.0,-1.0,3.0,2.0,,#1WL-C,3.0,24.0,0.0,0.0,0.0,0.0,0.0,7.3,5.1,0.0,4.75,5.0,0.0,0.0,40.0,4.0,3.7,4.0,4.9,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18194444444444444,0.18194444444444444,0.24953703703703703,4,0
|
12407.0,Kyle Harrison,2025 Season,Reserve,L,0.0,3.7,2.0,1.4,0.0,1.9,0.0,2.7,3.2,0.0,5.0,0.0,0.0,33.0,5.0,0.3,4.0,11.0,5.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15185185185185185,0.15185185185185185,0.32592592592592595,0.0,6.0,-1.0,3.0,2.0,,#1WL-C,3.0,24.0,0.0,0.0,0.0,0.0,0.0,7.3,5.1,0.0,4.75,5.0,0.0,0.0,40.0,4.0,3.7,4.0,4.9,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18194444444444444,0.18194444444444444,0.24953703703703703,4,0
|
||||||
12408.0,Daniel Palencia,2025 Season,Starter,R,0.0,1.55,3.0,1.95,0.0,0.0,2.8,3.2,0.0,3.2,5.0,0.0,0.0,43.95,0.0,4.25,2.25,0.0,7.85,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15462962962962962,0.15462962962962962,0.3013888888888889,0.0,8.0,9.0,1.0,1.0,4.0,#1WR-C,3.0,24.0,0.0,0.0,0.0,0.0,3.0,0.0,4.75,4.5,0.0,5.0,0.0,0.0,41.95,0.0,5.0,1.6,3.2,10.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13657407407407407,0.13657407407407407,0.16435185185185186,4,0
|
12408.0,Daniel Palencia,2025 Season,Starter,R,0.0,1.5,3.0,2.0,0.0,0.0,3.5,3.2,0.0,3.2,5.0,0.0,0.0,37.0,4.0,4.0,7.0,4.0,0.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16111111111111112,0.16111111111111112,0.3138888888888889,0.0,8.0,9.0,1.0,1.0,4.0,#1WR-C,3.0,24.0,0.0,0.0,0.0,0.0,3.0,0.0,4.75,4.5,0.0,5.0,0.0,0.0,42.0,0.0,5.0,4.0,6.25,4.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13657407407407407,0.13657407407407407,0.16435185185185186,4,0
|
||||||
12409.0,Gordon Graceffo,2025 Season,Replacement,R,0.0,0.0,2.0,0.0,0.0,0.0,8.3,3.8,0.0,3.9,5.0,0.0,0.0,33.0,4.0,7.7,5.0,4.2,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18055555555555555,0.18055555555555555,0.2851851851851852,0.0,9.0,-1.0,1.0,2.0,1.0,#1WR-C,2.0,24.0,1.2,2.0,1.2,0.0,0.0,6.55,5.7,0.0,5.7,5.0,0.0,0.0,27.0,0.0,1.25,9.0,4.0,7.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.22083333333333333,0.22083333333333333,0.3648148148148148,3,51
|
12409.0,Gordon Graceffo,2025 Season,Replacement,R,0.0,0.0,2.0,0.0,0.0,0.0,8.3,3.8,0.0,3.9,5.0,0.0,0.0,33.0,4.0,7.7,5.0,4.2,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18055555555555555,0.18055555555555555,0.2851851851851852,0.0,9.0,-1.0,1.0,2.0,1.0,#1WR-C,2.0,24.0,1.2,2.0,1.2,0.0,0.0,6.55,5.7,0.0,5.7,5.0,0.0,0.0,27.0,0.0,1.25,9.0,4.0,7.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.22083333333333333,0.22083333333333333,0.3648148148148148,3,51
|
||||||
12410.0,Chase Lee,2025 Season,Reserve,R,0.0,0.0,3.0,0.0,0.0,0.0,4.25,1.7,0.0,1.75,5.0,0.0,0.0,37.0,0.0,7.75,4.0,0.3,11.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10833333333333334,0.10833333333333334,0.18935185185185185,0.0,0.0,9.0,1.0,1.0,,#1WR-C,2.0,24.0,5.0,3.0,0.0,0.0,0.0,4.5,3.3,0.0,3.25,5.0,0.0,0.0,42.0,4.0,0.5,4.0,2.7,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18564814814814815,0.18564814814814815,0.4078703703703704,3,0
|
12410.0,Chase Lee,2025 Season,Reserve,R,0.0,0.0,3.0,0.0,0.0,0.0,4.25,1.7,0.0,1.75,5.0,0.0,0.0,37.0,0.0,7.75,4.0,0.3,11.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10833333333333334,0.10833333333333334,0.18935185185185185,0.0,0.0,9.0,1.0,1.0,,#1WR-C,2.0,24.0,5.0,3.0,0.0,0.0,0.0,4.5,3.3,0.0,3.25,5.0,0.0,0.0,42.0,4.0,0.5,4.0,2.7,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18564814814814815,0.18564814814814815,0.4078703703703704,3,0
|
||||||
12411.0,Ryan Bergert,2025 Season,MVP,R,0.0,0.0,2.0,0.0,0.0,0.0,5.1,3.3,0.0,3.2,5.0,0.0,0.0,38.0,0.0,8.9,5.0,2.7,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1398148148148148,0.1398148148148148,0.21481481481481482,0.0,5.0,9.0,4.0,3.0,,#1WR-C,2.0,24.0,0.0,2.0,0.0,0.0,0.0,3.3,3.25,0.0,3.2,5.0,0.0,0.0,40.0,4.0,7.7,4.0,5.75,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12268518518518519,0.12268518518518519,0.18101851851851852,4,0
|
12411.0,Ryan Bergert,2025 Season,MVP,R,0.0,0.0,2.0,0.0,0.0,0.0,5.1,3.3,0.0,3.2,5.0,0.0,0.0,38.0,0.0,8.9,5.0,2.7,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1398148148148148,0.1398148148148148,0.21481481481481482,0.0,5.0,9.0,4.0,3.0,,#1WR-C,2.0,24.0,0.0,2.0,0.0,0.0,0.0,3.3,3.25,0.0,3.2,5.0,0.0,0.0,40.0,4.0,7.7,4.0,5.75,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12268518518518519,0.12268518518518519,0.18101851851851852,4,0
|
||||||
@ -6577,8 +6577,8 @@ player_id,player_name,cardset_name,rarity,hand,variant,homerun_vl,bp_homerun_vl,
|
|||||||
12414.0,David Festa,2025 Season,Reserve,R,0.0,0.0,2.0,0.0,0.0,0.0,4.6,3.25,0.0,3.25,5.0,0.0,0.0,35.0,4.0,4.4,5.0,5.75,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13518518518518519,0.13518518518518519,0.20555555555555555,0.0,4.0,-2.0,5.0,1.0,,#1WR-C,3.0,24.0,3.9,2.0,0.0,0.0,0.0,1.5,5.1,0.0,5.4,5.0,0.0,0.0,27.0,4.0,7.6,5.0,4.9,7.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17962962962962964,0.17962962962962964,0.3296296296296296,2,0
|
12414.0,David Festa,2025 Season,Reserve,R,0.0,0.0,2.0,0.0,0.0,0.0,4.6,3.25,0.0,3.25,5.0,0.0,0.0,35.0,4.0,4.4,5.0,5.75,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13518518518518519,0.13518518518518519,0.20555555555555555,0.0,4.0,-2.0,5.0,1.0,,#1WR-C,3.0,24.0,3.9,2.0,0.0,0.0,0.0,1.5,5.1,0.0,5.4,5.0,0.0,0.0,27.0,4.0,7.6,5.0,4.9,7.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17962962962962964,0.17962962962962964,0.3296296296296296,2,0
|
||||||
12415.0,Robert Suarez,2025 Season,MVP,R,0.0,0.0,2.0,0.0,0.0,0.0,2.85,4.8,0.0,4.75,5.0,0.0,0.0,39.0,4.0,0.15,6.0,5.2,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14722222222222223,0.14722222222222223,0.2013888888888889,0.0,3.0,9.0,1.0,1.0,5.0,#1WR-C,1.0,24.0,0.0,2.0,0.0,0.0,0.0,1.35,1.2,0.0,1.2,5.0,0.0,0.0,44.0,4.0,1.65,4.0,6.8,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.06712962962962964,0.06712962962962964,0.10740740740740741,2,0
|
12415.0,Robert Suarez,2025 Season,MVP,R,0.0,0.0,2.0,0.0,0.0,0.0,2.85,4.8,0.0,4.75,5.0,0.0,0.0,39.0,4.0,0.15,6.0,5.2,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14722222222222223,0.14722222222222223,0.2013888888888889,0.0,3.0,9.0,1.0,1.0,5.0,#1WR-C,1.0,24.0,0.0,2.0,0.0,0.0,0.0,1.35,1.2,0.0,1.2,5.0,0.0,0.0,44.0,4.0,1.65,4.0,6.8,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.06712962962962964,0.06712962962962964,0.10740740740740741,2,0
|
||||||
12416.0,Noah Cameron,2025 Season,MVP,L,0.0,0.0,3.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,5.0,0.0,0.0,34.0,9.0,5.0,0.0,8.0,11.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.07407407407407407,0.07407407407407407,0.1527777777777778,0.0,4.0,-3.0,6.0,1.0,,#1WL-C,1.0,24.0,1.05,2.0,0.0,0.0,2.5,0.0,4.5,4.5,0.0,5.0,0.0,0.0,33.0,5.0,1.95,4.0,9.0,6.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1486111111111111,0.1486111111111111,0.22870370370370371,2,0
|
12416.0,Noah Cameron,2025 Season,MVP,L,0.0,0.0,3.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,5.0,0.0,0.0,34.0,9.0,5.0,0.0,8.0,11.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.07407407407407407,0.07407407407407407,0.1527777777777778,0.0,4.0,-3.0,6.0,1.0,,#1WL-C,1.0,24.0,1.05,2.0,0.0,0.0,2.5,0.0,4.5,4.5,0.0,5.0,0.0,0.0,33.0,5.0,1.95,4.0,9.0,6.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1486111111111111,0.1486111111111111,0.22870370370370371,2,0
|
||||||
12417.0,Justin Wrobleski,2025 Season,Reserve,L,0.0,3.1,0.0,0.0,0.0,0.0,1.1,3.2,0.0,3.2,5.0,0.0,0.0,39.95,0.0,3.75,0.0,2.25,17.45,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1212962962962963,0.1212962962962963,0.2175925925925926,0.0,3.0,6.0,2.0,1.0,1.0,#1WL-C,1.0,24.0,0.0,2.0,0.0,0.0,0.0,6.2,6.0,0.0,5.95,5.0,0.0,0.0,39.95,1.35,3.15,0.0,1.2,8.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20046296296296295,0.20046296296296295,0.28564814814814815,2,0
|
12417.0,Justin Wrobleski,2025 Season,Reserve,L,0.0,3.1,0.0,0.0,0.0,0.0,0.9,3.4,0.0,3.2,5.0,0.0,0.0,48.0,5.0,0.0,4.0,5.6,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12129629629629629,0.12129629629629629,0.21574074074074073,0.0,3.0,6.0,2.0,1.0,1.0,#1WL-C,1.0,24.0,0.0,2.0,0.0,0.0,0.0,6.2,5.8,0.0,6.1,5.0,0.0,0.0,39.0,5.0,0.8,0.0,5.2,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2,0.2,0.2851851851851852,2,0
|
||||||
12418.0,Chris Roycroft,2025 Season,Replacement,R,0.0,0.0,3.0,0.0,0.0,12.1,0.0,5.4,5.1,0.0,5.0,0.0,0.0,30.95,0.0,4.2,1.2,3.2,8.85,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.24629629629629632,0.24629629629629632,0.4,0.0,20.0,-1.0,1.0,1.0,,#1WR-C,1.0,24.0,1.15,4.0,0.0,0.0,0.0,6.25,4.8,0.0,4.8,5.0,0.0,0.0,18.95,0.0,7.8500000000000005,4.2,2.25,19.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19907407407407407,0.19907407407407407,0.3444444444444445,4,0
|
12418.0,Chris Roycroft,2025 Season,Replacement,R,0.0,0.0,3.0,0.0,0.0,12.1,0.0,5.4,5.1,0.0,5.0,0.0,0.0,27.0,4.0,4.0,5.0,7.5,0.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2462962962962963,0.2462962962962963,0.4,0.0,20.0,-1.0,1.0,1.0,,#1WR-C,1.0,24.0,1.1,4.0,0.0,0.0,0.0,6.3,4.8,0.0,4.8,5.0,0.0,0.0,27.0,4.0,0.6,13.0,7.2,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19907407407407407,0.19907407407407407,0.3435185185185185,4,0
|
||||||
12419.0,Colton Gordon,2025 Season,Replacement,L,0.0,0.35,2.0,0.0,0.0,3.75,0.0,7.3,7.25,0.0,5.0,0.0,0.0,35.95,0.0,5.1,0.0,3.25,9.05,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20509259259259258,0.20509259259259258,0.2773148148148148,3.0,7.0,9.0,4.0,3.0,0.0,#1WL-C,2.0,24.0,1.4,5.0,0.0,0.0,0.0,6.45,4.25,0.0,4.25,5.0,0.0,0.0,24.95,3.3,9.95,0.0,2.25,12.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19768518518518519,0.19768518518518519,0.36574074074074076,4,38
|
12419.0,Colton Gordon,2025 Season,Replacement,L,0.0,0.35,2.0,0.0,0.0,3.75,0.0,7.3,7.25,0.0,5.0,0.0,0.0,35.95,0.0,5.1,0.0,3.25,9.05,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20509259259259258,0.20509259259259258,0.2773148148148148,3.0,7.0,9.0,4.0,3.0,0.0,#1WL-C,2.0,24.0,1.4,5.0,0.0,0.0,0.0,6.45,4.25,0.0,4.25,5.0,0.0,0.0,24.95,3.3,9.95,0.0,2.25,12.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19768518518518519,0.19768518518518519,0.36574074074074076,4,38
|
||||||
12420.0,Zach Agnos,2025 Season,Replacement,R,0.0,0.0,4.0,0.0,0.0,0.0,8.25,4.5,0.0,4.5,5.0,0.0,0.0,27.0,4.0,0.75,10.0,9.5,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2013888888888889,0.2013888888888889,0.3333333333333333,0.0,13.0,-5.0,1.0,1.0,2.0,#1WR-C,2.0,24.0,1.4,3.0,0.0,0.0,0.0,6.7,1.6,0.0,1.7,5.0,0.0,0.0,17.0,4.0,8.9,9.0,8.4,12.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1425925925925926,0.1425925925925926,0.2851851851851852,2,0
|
12420.0,Zach Agnos,2025 Season,Replacement,R,0.0,0.0,4.0,0.0,0.0,0.0,8.25,4.5,0.0,4.5,5.0,0.0,0.0,27.0,4.0,0.75,10.0,9.5,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2013888888888889,0.2013888888888889,0.3333333333333333,0.0,13.0,-5.0,1.0,1.0,2.0,#1WR-C,2.0,24.0,1.4,3.0,0.0,0.0,0.0,6.7,1.6,0.0,1.7,5.0,0.0,0.0,17.0,4.0,8.9,9.0,8.4,12.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1425925925925926,0.1425925925925926,0.2851851851851852,2,0
|
||||||
12421.0,Mason Fluharty,2025 Season,MVP,L,0.0,0.6,1.0,0.0,0.0,0.0,6.4,0.0,0.0,1.25,5.0,0.0,0.0,51.95,1.05,4.05,0.0,1.25,6.45,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10416666666666667,0.10416666666666667,0.1939814814814815,0.0,4.0,-5.0,1.0,1.0,0.0,#1WL-C,2.0,24.0,1.05,3.0,0.0,0.0,0.0,0.0,3.75,0.0,3.6,5.0,0.0,0.0,30.95,3.2,10.95,0.0,2.75,14.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11481481481481481,0.11481481481481481,0.18564814814814815,2,0
|
12421.0,Mason Fluharty,2025 Season,MVP,L,0.0,0.6,1.0,0.0,0.0,0.0,6.4,0.0,0.0,1.25,5.0,0.0,0.0,51.95,1.05,4.05,0.0,1.25,6.45,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10416666666666667,0.10416666666666667,0.1939814814814815,0.0,4.0,-5.0,1.0,1.0,0.0,#1WL-C,2.0,24.0,1.05,3.0,0.0,0.0,0.0,0.0,3.75,0.0,3.6,5.0,0.0,0.0,30.95,3.2,10.95,0.0,2.75,14.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11481481481481481,0.11481481481481481,0.18564814814814815,2,0
|
||||||
@ -6599,7 +6599,7 @@ player_id,player_name,cardset_name,rarity,hand,variant,homerun_vl,bp_homerun_vl,
|
|||||||
12487.0,Anthony Desclafani,2025 Season,Replacement,R,0.0,3.0,2.0,0.0,0.0,0.0,3.2,4.5,0.0,4.75,5.0,0.0,0.0,27.95,0.0,10.25,1.2,3.2,13.95,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17546296296296296,0.17546296296296296,0.3162037037037037,0.0,0.0,9.0,3.0,2.0,1.0,#1WR-C,2.0,24.0,4.1,3.0,0.0,0.0,0.0,5.85,1.5,0.0,1.5,5.0,0.0,0.0,35.95,0.0,7.949999999999999,2.4,1.4,10.35,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15694444444444444,0.15694444444444444,0.36666666666666664,4,0
|
12487.0,Anthony Desclafani,2025 Season,Replacement,R,0.0,3.0,2.0,0.0,0.0,0.0,3.2,4.5,0.0,4.75,5.0,0.0,0.0,27.95,0.0,10.25,1.2,3.2,13.95,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17546296296296296,0.17546296296296296,0.3162037037037037,0.0,0.0,9.0,3.0,2.0,1.0,#1WR-C,2.0,24.0,4.1,3.0,0.0,0.0,0.0,5.85,1.5,0.0,1.5,5.0,0.0,0.0,35.95,0.0,7.949999999999999,2.4,1.4,10.35,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15694444444444444,0.15694444444444444,0.36666666666666664,4,0
|
||||||
12488.0,Marcus Stroman,2025 Season,Replacement,R,0.0,2.8,2.0,0.0,0.0,0.0,7.2,5.1,0.0,5.1,5.0,0.0,0.0,22.95,0.0,6.5,2.25,2.25,17.85,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.21944444444444447,0.21944444444444447,0.3916666666666667,0.0,5.0,9.0,4.0,1.0,,#1WR-C,3.0,24.0,0.0,1.0,0.0,0.0,0.0,4.5,5.7,0.0,5.4,5.0,0.0,0.0,21.95,0.0,11.85,3.75,3.5,16.35,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17222222222222225,0.17222222222222225,0.2277777777777778,3,0
|
12488.0,Marcus Stroman,2025 Season,Replacement,R,0.0,2.8,2.0,0.0,0.0,0.0,7.2,5.1,0.0,5.1,5.0,0.0,0.0,22.95,0.0,6.5,2.25,2.25,17.85,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.21944444444444447,0.21944444444444447,0.3916666666666667,0.0,5.0,9.0,4.0,1.0,,#1WR-C,3.0,24.0,0.0,1.0,0.0,0.0,0.0,4.5,5.7,0.0,5.4,5.0,0.0,0.0,21.95,0.0,11.85,3.75,3.5,16.35,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17222222222222225,0.17222222222222225,0.2277777777777778,3,0
|
||||||
12489.0,Tyler Glasnow,2025 Season,Hall of Fame,R,0.0,0.0,2.0,0.0,0.0,0.0,3.1,2.2,0.0,1.9,5.0,0.0,0.0,43.0,4.0,5.9,5.0,6.8,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.09907407407407408,0.09907407407407408,0.15555555555555556,6.0,11.0,9.0,5.0,1.0,,#1WR-C,3.0,24.0,0.0,2.0,0.0,0.0,0.0,3.7,1.3,0.0,1.25,5.0,0.0,0.0,39.0,4.0,4.3,10.0,4.0,0.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.09027777777777778,0.09027777777777778,0.15231481481481482,4,0
|
12489.0,Tyler Glasnow,2025 Season,Hall of Fame,R,0.0,0.0,2.0,0.0,0.0,0.0,3.1,2.2,0.0,1.9,5.0,0.0,0.0,43.0,4.0,5.9,5.0,6.8,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.09907407407407408,0.09907407407407408,0.15555555555555556,6.0,11.0,9.0,5.0,1.0,,#1WR-C,3.0,24.0,0.0,2.0,0.0,0.0,0.0,3.7,1.3,0.0,1.25,5.0,0.0,0.0,39.0,4.0,4.3,10.0,4.0,0.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.09027777777777778,0.09027777777777778,0.15231481481481482,4,0
|
||||||
12490.0,Paul Blackburn,2025 Season,Replacement,R,0.0,0.0,2.0,0.0,0.0,6.3,0.0,5.4,5.1,0.0,5.0,0.0,0.0,24.95,0.0,9.2,3.2,4.75,13.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18796296296296294,0.18796296296296294,0.2740740740740741,7.0,5.0,9.0,2.0,1.0,3.0,#1WR-C,1.0,24.0,6.8,0.0,1.7,0.0,0.0,2.2,6.6,0.0,6.6,5.0,0.0,0.0,30.95,0.0,5.7,0.0,1.65,11.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.24444444444444444,0.24444444444444444,0.48518518518518516,4,0
|
12490.0,Paul Blackburn,2025 Season,Replacement,R,0.0,0.0,2.0,0.0,0.0,6.3,0.0,5.4,5.1,0.0,5.0,0.0,0.0,25.0,4.0,9.0,4.0,7.3,5.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18796296296296297,0.18796296296296297,0.2740740740740741,7.0,5.0,9.0,2.0,1.0,3.0,#1WR-C,1.0,24.0,6.8,0.0,1.7,0.0,0.0,2.2,6.6,0.0,6.6,5.0,0.0,0.0,30.0,5.0,0.0,4.0,4.7,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.24444444444444444,0.24444444444444444,0.48518518518518516,4,0
|
||||||
12491.0,Austin Gomber,2025 Season,Replacement,L,0.0,6.6,4.0,0.0,0.0,0.0,5.7,5.7,0.0,5.7,5.0,0.0,0.0,17.95,3.2,12.900000000000002,0.0,2.25,10.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2611111111111111,0.2611111111111111,0.5527777777777778,0.0,14.0,4.0,5.0,1.0,,#1WL-C,2.0,24.0,1.5,4.0,0.0,0.0,0.0,6.75,5.9,0.0,5.85,5.0,0.0,0.0,17.95,3.25,11.4,0.0,2.8,14.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.22685185185185186,0.22685185185185186,0.38657407407407407,3,0
|
12491.0,Austin Gomber,2025 Season,Replacement,L,0.0,6.6,4.0,0.0,0.0,0.0,5.7,5.7,0.0,5.7,5.0,0.0,0.0,17.95,3.2,12.900000000000002,0.0,2.25,10.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2611111111111111,0.2611111111111111,0.5527777777777778,0.0,14.0,4.0,5.0,1.0,,#1WL-C,2.0,24.0,1.5,4.0,0.0,0.0,0.0,6.75,5.9,0.0,5.85,5.0,0.0,0.0,17.95,3.25,11.4,0.0,2.8,14.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.22685185185185186,0.22685185185185186,0.38657407407407407,3,0
|
||||||
12492.0,Brock Stewart,2025 Season,Reserve,R,0.0,1.4,3.0,0.0,0.0,5.7,0.0,8.3,8.1,0.0,5.0,0.0,0.0,27.0,4.0,2.6,5.0,4.0,4.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.25462962962962965,0.25462962962962965,0.38796296296296295,0.0,5.0,5.0,1.0,1.0,,#1WR-C,2.0,24.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.65,0.0,5.0,0.0,0.0,51.0,4.0,4.0,5.0,5.0,1.35,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.05694444444444444,0.05694444444444444,0.05694444444444444,4,51
|
12492.0,Brock Stewart,2025 Season,Reserve,R,0.0,1.4,3.0,0.0,0.0,5.7,0.0,8.3,8.1,0.0,5.0,0.0,0.0,27.0,4.0,2.6,5.0,4.0,4.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.25462962962962965,0.25462962962962965,0.38796296296296295,0.0,5.0,5.0,1.0,1.0,,#1WR-C,2.0,24.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.65,0.0,5.0,0.0,0.0,51.0,4.0,4.0,5.0,5.0,1.35,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.05694444444444444,0.05694444444444444,0.05694444444444444,4,51
|
||||||
12493.0,Genesis Cabrera,2025 Season,Replacement,L,0.0,0.0,3.0,0.0,0.0,0.0,5.4,1.25,0.0,1.2,5.0,0.0,0.0,30.0,9.0,13.6,4.0,3.75,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10972222222222222,0.10972222222222222,0.2013888888888889,7.0,14.0,-1.0,1.0,1.0,1.0,#1WL-C,2.0,24.0,5.1,3.0,0.0,0.0,0.0,3.9,6.8,0.0,6.7,5.0,0.0,0.0,27.0,5.0,0.0,4.0,5.0,4.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.24537037037037038,0.24537037037037038,0.4648148148148148,3,0
|
12493.0,Genesis Cabrera,2025 Season,Replacement,L,0.0,0.0,3.0,0.0,0.0,0.0,5.4,1.25,0.0,1.2,5.0,0.0,0.0,30.0,9.0,13.6,4.0,3.75,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10972222222222222,0.10972222222222222,0.2013888888888889,7.0,14.0,-1.0,1.0,1.0,1.0,#1WL-C,2.0,24.0,5.1,3.0,0.0,0.0,0.0,3.9,6.8,0.0,6.7,5.0,0.0,0.0,27.0,5.0,0.0,4.0,5.0,4.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.24537037037037038,0.24537037037037038,0.4648148148148148,3,0
|
||||||
@ -6611,7 +6611,7 @@ player_id,player_name,cardset_name,rarity,hand,variant,homerun_vl,bp_homerun_vl,
|
|||||||
12499.0,Connor Brogdon,2025 Season,Reserve,R,0.0,1.8,5.0,0.0,0.0,0.0,5.7,2.8,0.0,2.8,5.0,0.0,0.0,32.0,1.0,1.5,10.0,5.2,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1675925925925926,0.1675925925925926,0.3398148148148148,0.0,9.0,-3.0,1.0,1.0,,#1WR-C,1.0,24.0,1.6,3.0,0.0,0.0,0.0,2.4,4.75,0.0,3.9,5.0,0.0,0.0,35.0,4.0,3.0,5.0,4.0,5.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15416666666666667,0.15416666666666667,0.2625,2,51
|
12499.0,Connor Brogdon,2025 Season,Reserve,R,0.0,1.8,5.0,0.0,0.0,0.0,5.7,2.8,0.0,2.8,5.0,0.0,0.0,32.0,1.0,1.5,10.0,5.2,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1675925925925926,0.1675925925925926,0.3398148148148148,0.0,9.0,-3.0,1.0,1.0,,#1WR-C,1.0,24.0,1.6,3.0,0.0,0.0,0.0,2.4,4.75,0.0,3.9,5.0,0.0,0.0,35.0,4.0,3.0,5.0,4.0,5.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15416666666666667,0.15416666666666667,0.2625,2,51
|
||||||
12500.0,Tristan Beck,2025 Season,Starter,R,0.0,0.0,3.0,0.0,0.0,0.0,3.5,2.4,0.0,2.5,5.0,0.0,0.0,26.0,0.0,5.5,7.0,5.6,16.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11481481481481481,0.11481481481481481,0.18888888888888888,0.0,11.0,9.0,1.0,2.0,1.0,#1WR-C,3.0,24.0,1.1,2.0,0.0,0.0,0.0,3.8,4.5,0.0,4.25,5.0,0.0,0.0,28.0,0.0,9.1,5.0,5.5,10.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1587962962962963,0.1587962962962963,0.2523148148148148,3,0
|
12500.0,Tristan Beck,2025 Season,Starter,R,0.0,0.0,3.0,0.0,0.0,0.0,3.5,2.4,0.0,2.5,5.0,0.0,0.0,26.0,0.0,5.5,7.0,5.6,16.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11481481481481481,0.11481481481481481,0.18888888888888888,0.0,11.0,9.0,1.0,2.0,1.0,#1WR-C,3.0,24.0,1.1,2.0,0.0,0.0,0.0,3.8,4.5,0.0,4.25,5.0,0.0,0.0,28.0,0.0,9.1,5.0,5.5,10.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1587962962962963,0.1587962962962963,0.2523148148148148,3,0
|
||||||
12502.0,Cole Winn,2025 Season,Starter,R,0.0,0.0,4.0,0.0,0.0,0.0,8.55,2.75,0.0,2.75,5.0,0.0,0.0,37.0,4.0,0.45,4.0,3.25,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17175925925925925,0.17175925925925925,0.30648148148148147,0.0,5.0,-3.0,1.0,1.0,,#1WR-C,1.0,24.0,1.2,0.0,0.0,0.0,0.0,1.35,2.2,0.0,2.1,0.0,0.0,0.0,42.0,4.0,4.45,5.0,6.8,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.06342592592592593,0.06342592592592593,0.10925925925925926,2,0
|
12502.0,Cole Winn,2025 Season,Starter,R,0.0,0.0,4.0,0.0,0.0,0.0,8.55,2.75,0.0,2.75,5.0,0.0,0.0,37.0,4.0,0.45,4.0,3.25,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17175925925925925,0.17175925925925925,0.30648148148148147,0.0,5.0,-3.0,1.0,1.0,,#1WR-C,1.0,24.0,1.2,0.0,0.0,0.0,0.0,1.35,2.2,0.0,2.1,0.0,0.0,0.0,42.0,4.0,4.45,5.0,6.8,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.06342592592592593,0.06342592592592593,0.10925925925925926,2,0
|
||||||
12503.0,Dl Hall,2025 Season,MVP,L,0.0,0.95,1.0,1.2,0.0,0.0,0.0,2.25,0.0,2.25,0.0,0.0,0.0,32.95,2.25,14.350000000000001,0.0,1.5,20.3,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.06620370370370371,0.06620370370370371,0.12870370370370368,0.0,0.0,9.0,2.0,1.0,,#1WL-C,2.0,24.0,0.0,0.0,0.0,0.0,0.0,6.2,0.0,0.0,6.35,5.0,0.0,0.0,21.95,4.5,10.85,0.0,4.5,19.65,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13935185185185187,0.13935185185185187,0.19675925925925927,2,0
|
12503.0,Dl Hall,2025 Season,MVP,L,0.0,0.0,1.0,2.1,0.0,0.0,0.0,2.3,0.0,2.25,0.0,0.0,0.0,37.0,7.0,14.0,4.0,6.6,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.06620370370370371,0.06620370370370371,0.11898148148148148,0.0,0.0,9.0,2.0,1.0,,#1WL-C,2.0,24.0,0.0,0.0,0.0,0.0,0.0,6.2,0.0,0.0,6.3,5.0,0.0,0.0,24.0,9.0,4.8,0.0,9.0,12.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1388888888888889,0.1388888888888889,0.1962962962962963,2,0
|
||||||
12504.0,Trevor Rogers,2025 Season,Hall of Fame,L,0.0,0.0,0.0,0.0,0.0,2.1,0.0,2.4,2.3,0.0,5.0,0.0,0.0,40.0,5.0,5.0,4.0,7.5,5.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.08611111111111111,0.08611111111111111,0.10555555555555556,3.0,0.0,0.0,6.0,1.0,,#1WL-C,2.0,24.0,0.0,2.0,0.0,0.0,0.0,1.65,3.2,0.0,2.7,5.0,0.0,0.0,36.0,4.0,1.35,0.0,4.8,15.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10231481481481482,0.10231481481481482,0.14537037037037037,3,0
|
12504.0,Trevor Rogers,2025 Season,Hall of Fame,L,0.0,0.0,0.0,0.0,0.0,2.1,0.0,2.4,2.3,0.0,5.0,0.0,0.0,40.0,5.0,5.0,4.0,7.5,5.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.08611111111111111,0.08611111111111111,0.10555555555555556,3.0,0.0,0.0,6.0,1.0,,#1WL-C,2.0,24.0,0.0,2.0,0.0,0.0,0.0,1.65,3.2,0.0,2.7,5.0,0.0,0.0,36.0,4.0,1.35,0.0,4.8,15.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10231481481481482,0.10231481481481482,0.14537037037037037,3,0
|
||||||
12505.0,Max Lazar,2025 Season,Reserve,R,0.0,2.6,1.0,0.0,0.0,0.0,5.7,4.2,0.0,4.2,5.0,0.0,0.0,36.0,5.0,2.7,5.0,5.8,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1824074074074074,0.1824074074074074,0.3212962962962963,0.0,15.0,-3.0,1.0,1.0,2.0,#1WR-C,3.0,24.0,1.1,3.0,0.0,0.0,0.0,4.25,4.8,0.0,4.75,5.0,0.0,0.0,24.0,4.0,5.65,5.0,5.2,12.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.175,0.175,0.2865740740740741,3,0
|
12505.0,Max Lazar,2025 Season,Reserve,R,0.0,2.6,1.0,0.0,0.0,0.0,5.7,4.2,0.0,4.2,5.0,0.0,0.0,36.0,5.0,2.7,5.0,5.8,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1824074074074074,0.1824074074074074,0.3212962962962963,0.0,15.0,-3.0,1.0,1.0,2.0,#1WR-C,3.0,24.0,1.1,3.0,0.0,0.0,0.0,4.25,4.8,0.0,4.75,5.0,0.0,0.0,24.0,4.0,5.65,5.0,5.2,12.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.175,0.175,0.2865740740740741,3,0
|
||||||
12506.0,Aaron Ashby,2025 Season,All-Star,L,0.0,0.0,1.0,0.0,0.0,0.0,0.0,5.1,4.3,0.0,5.0,0.0,0.0,39.0,5.0,3.0,4.0,9.9,2.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11481481481481481,0.11481481481481481,0.1287037037037037,0.0,18.0,5.0,1.0,2.0,0.0,#1WL-C,2.0,24.0,0.0,2.0,0.0,0.0,0.0,3.3,5.4,0.0,5.4,5.0,0.0,0.0,33.0,4.0,3.7,4.0,4.6,8.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16296296296296298,0.16296296296296298,0.2212962962962963,2,23
|
12506.0,Aaron Ashby,2025 Season,All-Star,L,0.0,0.0,1.0,0.0,0.0,0.0,0.0,5.1,4.3,0.0,5.0,0.0,0.0,39.0,5.0,3.0,4.0,9.9,2.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11481481481481481,0.11481481481481481,0.1287037037037037,0.0,18.0,5.0,1.0,2.0,0.0,#1WL-C,2.0,24.0,0.0,2.0,0.0,0.0,0.0,3.3,5.4,0.0,5.4,5.0,0.0,0.0,33.0,4.0,3.7,4.0,4.6,8.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16296296296296298,0.16296296296296298,0.2212962962962963,2,23
|
||||||
@ -6628,7 +6628,7 @@ player_id,player_name,cardset_name,rarity,hand,variant,homerun_vl,bp_homerun_vl,
|
|||||||
12517.0,Mick Abel,2025 Season,Replacement,R,0.0,5.1,3.0,0.0,0.0,0.0,0.0,6.1,0.0,6.1,5.0,0.0,0.0,27.0,5.0,5.9,4.0,7.9,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19722222222222222,0.19722222222222222,0.38055555555555554,0.0,10.0,-1.0,4.0,3.0,,#1WR-C,3.0,24.0,0.0,3.0,0.0,0.0,0.0,2.5,6.3,0.0,6.4,5.0,0.0,0.0,31.0,5.0,2.5,10.0,6.7,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17777777777777778,0.17777777777777778,0.24259259259259258,3,0
|
12517.0,Mick Abel,2025 Season,Replacement,R,0.0,5.1,3.0,0.0,0.0,0.0,0.0,6.1,0.0,6.1,5.0,0.0,0.0,27.0,5.0,5.9,4.0,7.9,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19722222222222222,0.19722222222222222,0.38055555555555554,0.0,10.0,-1.0,4.0,3.0,,#1WR-C,3.0,24.0,0.0,3.0,0.0,0.0,0.0,2.5,6.3,0.0,6.4,5.0,0.0,0.0,31.0,5.0,2.5,10.0,6.7,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17777777777777778,0.17777777777777778,0.24259259259259258,3,0
|
||||||
12518.0,Eury Perez,2025 Season,MVP,R,0.0,0.0,3.0,0.0,0.0,0.0,3.0,1.9,0.0,1.8,5.0,0.0,0.0,39.0,0.0,9.0,9.0,5.1,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.09907407407407408,0.09907407407407408,0.1685185185185185,6.0,19.0,1.0,5.0,1.0,,#1WR-C,2.0,24.0,0.0,2.0,0.0,0.0,0.0,6.5,1.6,0.0,1.5,5.0,0.0,0.0,42.0,0.0,1.5,5.0,6.4,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12129629629629629,0.12129629629629629,0.20925925925925926,4,27
|
12518.0,Eury Perez,2025 Season,MVP,R,0.0,0.0,3.0,0.0,0.0,0.0,3.0,1.9,0.0,1.8,5.0,0.0,0.0,39.0,0.0,9.0,9.0,5.1,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.09907407407407408,0.09907407407407408,0.1685185185185185,6.0,19.0,1.0,5.0,1.0,,#1WR-C,2.0,24.0,0.0,2.0,0.0,0.0,0.0,6.5,1.6,0.0,1.5,5.0,0.0,0.0,42.0,0.0,1.5,5.0,6.4,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12129629629629629,0.12129629629629629,0.20925925925925926,4,27
|
||||||
12519.0,Zach Brzykcy,2025 Season,Replacement,R,0.0,0.0,3.0,0.0,0.0,0.0,4.9,3.4,0.0,3.4,5.0,0.0,0.0,39.0,4.0,4.1,7.0,4.0,0.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14537037037037037,0.14537037037037037,0.2324074074074074,0.0,17.0,-1.0,1.0,1.0,,#1WR-C,3.0,24.0,1.4,5.0,0.0,0.0,0.0,5.6,7.2,0.0,6.9,5.0,0.0,0.0,23.0,4.0,8.0,5.0,1.8,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.24166666666666667,0.24166666666666667,0.40185185185185185,3,0
|
12519.0,Zach Brzykcy,2025 Season,Replacement,R,0.0,0.0,3.0,0.0,0.0,0.0,4.9,3.4,0.0,3.4,5.0,0.0,0.0,39.0,4.0,4.1,7.0,4.0,0.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14537037037037037,0.14537037037037037,0.2324074074074074,0.0,17.0,-1.0,1.0,1.0,,#1WR-C,3.0,24.0,1.4,5.0,0.0,0.0,0.0,5.6,7.2,0.0,6.9,5.0,0.0,0.0,23.0,4.0,8.0,5.0,1.8,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.24166666666666667,0.24166666666666667,0.40185185185185185,3,0
|
||||||
12520.0,Brandon Young,2025 Season,Replacement,R,0.0,1.25,3.0,0.0,0.0,0.0,7.9,5.7,0.0,5.75,5.0,0.0,0.0,23.95,0.0,7.15,2.1,2.8,14.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2277777777777778,0.2277777777777778,0.3773148148148148,0.0,0.0,9.0,5.0,1.0,,#1WR-C,3.0,24.0,1.1,4.0,0.0,0.0,0.0,5.1,3.9,0.0,3.8,5.0,0.0,0.0,30.95,0.0,8.15,2.4,1.65,12.95,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17037037037037037,0.17037037037037037,0.3037037037037037,3,26
|
12520.0,Brandon Young,2025 Season,Replacement,R,0.0,1.25,3.0,0.0,0.0,0.0,7.75,5.8,0.0,5.8,5.0,0.0,0.0,27.0,4.0,0.0,5.0,7.2,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.22777777777777777,0.22777777777777777,0.37592592592592594,0.0,0.0,9.0,5.0,1.0,,#1WR-C,3.0,24.0,1.1,4.0,0.0,0.0,0.0,5.1,3.9,0.0,3.8,5.0,0.0,0.0,39.0,4.0,1.8,5.0,6.1,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17037037037037037,0.17037037037037037,0.3037037037037037,3,26
|
||||||
12521.0,Matt Svanson,2025 Season,Hall of Fame,R,0.0,0.0,0.0,0.0,0.0,0.0,2.4,2.4,0.0,2.4,0.0,0.0,0.0,46.0,4.0,6.6,4.0,5.6,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.06666666666666667,0.06666666666666667,0.08888888888888889,0.0,3.0,9.0,1.0,2.0,,#1WR-C,3.0,24.0,0.0,2.0,0.0,0.0,0.0,2.25,2.75,0.0,2.7,5.0,0.0,0.0,46.0,4.0,2.75,5.0,6.25,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1037037037037037,0.1037037037037037,0.15231481481481482,3,0
|
12521.0,Matt Svanson,2025 Season,Hall of Fame,R,0.0,0.0,0.0,0.0,0.0,0.0,2.4,2.4,0.0,2.4,0.0,0.0,0.0,46.0,4.0,6.6,4.0,5.6,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.06666666666666667,0.06666666666666667,0.08888888888888889,0.0,3.0,9.0,1.0,2.0,,#1WR-C,3.0,24.0,0.0,2.0,0.0,0.0,0.0,2.25,2.75,0.0,2.7,5.0,0.0,0.0,46.0,4.0,2.75,5.0,6.25,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1037037037037037,0.1037037037037037,0.15231481481481482,3,0
|
||||||
12522.0,Emmet Sheehan,2025 Season,Hall of Fame,R,0.0,1.15,2.0,0.0,0.0,0.0,3.2,1.05,0.0,0.0,5.0,0.0,0.0,47.95,0.0,6.8500000000000005,3.2,1.2,7.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.08240740740740739,0.08240740740740739,0.17175925925925928,0.0,5.0,-5.0,5.0,4.0,,#1WR-C,3.0,24.0,0.25,2.0,0.0,0.0,0.0,3.5,2.55,0.0,2.5,5.0,0.0,0.0,43.95,0.0,5.5,2.2,1.9,9.65,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1138888888888889,0.1138888888888889,0.18101851851851852,4,50
|
12522.0,Emmet Sheehan,2025 Season,Hall of Fame,R,0.0,1.15,2.0,0.0,0.0,0.0,3.2,1.05,0.0,0.0,5.0,0.0,0.0,47.95,0.0,6.8500000000000005,3.2,1.2,7.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.08240740740740739,0.08240740740740739,0.17175925925925928,0.0,5.0,-5.0,5.0,4.0,,#1WR-C,3.0,24.0,0.25,2.0,0.0,0.0,0.0,3.5,2.55,0.0,2.5,5.0,0.0,0.0,43.95,0.0,5.5,2.2,1.9,9.65,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1138888888888889,0.1138888888888889,0.18101851851851852,4,50
|
||||||
12523.0,Michael Mcgreevy,2025 Season,Replacement,R,0.0,1.8,4.0,0.0,0.0,0.0,4.2,7.0,0.0,6.9,5.0,0.0,0.0,26.0,5.0,0.0,5.0,6.0,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.22592592592592592,0.22592592592592592,0.37037037037037035,3.0,0.0,-5.0,6.0,1.0,,#1WR-C,2.0,24.0,0.0,2.0,0.0,0.0,0.0,3.2,4.5,0.0,4.5,5.0,0.0,0.0,26.0,0.0,0.8,6.0,9.5,17.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14537037037037037,0.14537037037037037,0.20277777777777778,2,11
|
12523.0,Michael Mcgreevy,2025 Season,Replacement,R,0.0,1.8,4.0,0.0,0.0,0.0,4.2,7.0,0.0,6.9,5.0,0.0,0.0,26.0,5.0,0.0,5.0,6.0,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.22592592592592592,0.22592592592592592,0.37037037037037035,3.0,0.0,-5.0,6.0,1.0,,#1WR-C,2.0,24.0,0.0,2.0,0.0,0.0,0.0,3.2,4.5,0.0,4.5,5.0,0.0,0.0,26.0,0.0,0.8,6.0,9.5,17.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14537037037037037,0.14537037037037037,0.20277777777777778,2,11
|
||||||
@ -6691,7 +6691,7 @@ player_id,player_name,cardset_name,rarity,hand,variant,homerun_vl,bp_homerun_vl,
|
|||||||
12627.0,Luis Gil,2025 Season,All-Star,R,0.0,0.0,2.0,0.0,0.0,0.0,5.65,3.2,0.0,2.55,5.0,0.0,0.0,22.95,0.0,13.25,4.75,3.2,16.45,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13796296296296298,0.13796296296296298,0.21805555555555556,10.0,14.0,-1.0,5.0,1.0,,#1WR-C,1.0,24.0,0.0,2.0,0.0,0.0,0.0,6.15,3.5,0.0,3.5,5.0,0.0,0.0,29.95,0.0,10.1,3.4,3.2,12.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15416666666666665,0.15416666666666665,0.2388888888888889,3,51
|
12627.0,Luis Gil,2025 Season,All-Star,R,0.0,0.0,2.0,0.0,0.0,0.0,5.65,3.2,0.0,2.55,5.0,0.0,0.0,22.95,0.0,13.25,4.75,3.2,16.45,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13796296296296298,0.13796296296296298,0.21805555555555556,10.0,14.0,-1.0,5.0,1.0,,#1WR-C,1.0,24.0,0.0,2.0,0.0,0.0,0.0,6.15,3.5,0.0,3.5,5.0,0.0,0.0,29.95,0.0,10.1,3.4,3.2,12.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15416666666666665,0.15416666666666665,0.2388888888888889,3,51
|
||||||
12628.0,Alexis Diaz,2025 Season,Replacement,R,0.0,7.449999999999999,5.0,3.2,0.0,3.9,0.0,1.4,1.5,0.0,5.0,0.0,0.0,23.95,0.0,10.1,5.9,2.5,9.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20787037037037034,0.20787037037037034,0.5796296296296296,0.0,0.0,6.0,1.0,1.0,,#1WR-C,2.0,24.0,3.3,2.0,0.0,0.0,3.5,0.0,0.0,0.0,0.0,5.0,0.0,0.0,38.95,0.0,10.3,1.2,5.1,9.65,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.09537037037037038,0.09537037037037038,0.2472222222222222,4,0
|
12628.0,Alexis Diaz,2025 Season,Replacement,R,0.0,7.449999999999999,5.0,3.2,0.0,3.9,0.0,1.4,1.5,0.0,5.0,0.0,0.0,23.95,0.0,10.1,5.9,2.5,9.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20787037037037034,0.20787037037037034,0.5796296296296296,0.0,0.0,6.0,1.0,1.0,,#1WR-C,2.0,24.0,3.3,2.0,0.0,0.0,3.5,0.0,0.0,0.0,0.0,5.0,0.0,0.0,38.95,0.0,10.3,1.2,5.1,9.65,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.09537037037037038,0.09537037037037038,0.2472222222222222,4,0
|
||||||
12629.0,Brooks Kriske,2025 Season,Replacement,R,0.0,0.0,0.0,0.0,0.0,0.0,12.75,6.4,0.0,6.4,5.0,0.0,0.0,28.0,0.0,5.25,5.0,5.6,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.25972222222222224,0.25972222222222224,0.37777777777777777,0.0,11.0,-3.0,1.0,1.0,,#1WR-C,3.0,24.0,0.0,2.0,0.0,0.0,10.5,0.0,2.5,0.0,0.0,5.0,0.0,0.0,43.0,0.0,3.0,4.0,5.0,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1527777777777778,0.1527777777777778,0.2777777777777778,2,0
|
12629.0,Brooks Kriske,2025 Season,Replacement,R,0.0,0.0,0.0,0.0,0.0,0.0,12.75,6.4,0.0,6.4,5.0,0.0,0.0,28.0,0.0,5.25,5.0,5.6,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.25972222222222224,0.25972222222222224,0.37777777777777777,0.0,11.0,-3.0,1.0,1.0,,#1WR-C,3.0,24.0,0.0,2.0,0.0,0.0,10.5,0.0,2.5,0.0,0.0,5.0,0.0,0.0,43.0,0.0,3.0,4.0,5.0,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1527777777777778,0.1527777777777778,0.2777777777777778,2,0
|
||||||
12630.0,Konnor Pilkington,2025 Season,Replacement,L,0.0,10.55,0.0,0.0,0.0,0.0,1.9,2.75,0.0,2.7,5.0,0.0,0.0,38.95,3.2,5.3999999999999995,0.0,0.0,8.55,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1888888888888889,0.1888888888888889,0.49953703703703706,0.0,14.0,-5.0,1.0,1.0,,#1WL-C,3.0,24.0,0.7,2.0,0.0,0.0,0.0,5.1,0.0,0.0,1.6,5.0,0.0,0.0,47.95,1.65,6.699999999999999,0.0,1.25,7.05,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10092592592592593,0.10092592592592593,0.1953703703703704,2,0
|
12630.0,Konnor Pilkington,2025 Season,Replacement,L,0.0,10.5,0.0,0.0,0.0,0.0,1.9,2.8,0.0,2.7,5.0,0.0,0.0,33.0,6.0,4.6,4.0,4.0,1.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18888888888888888,0.18888888888888888,0.4981481481481482,0.0,14.0,-5.0,1.0,1.0,,#1WL-C,3.0,24.0,0.0,2.0,0.0,0.0,0.0,5.8,0.0,0.0,1.6,5.0,0.0,0.0,48.0,4.0,6.2,0.0,4.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10092592592592593,0.10092592592592593,0.1824074074074074,2,0
|
||||||
12631.0,Javier Assad,2025 Season,Reserve,R,0.0,0.95,3.0,3.2,0.0,0.0,5.1,4.5,0.0,4.5,5.0,0.0,0.0,25.95,0.0,6.6,2.5,1.5,16.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20601851851851852,0.20601851851851852,0.3805555555555556,0.0,5.0,9.0,5.0,4.0,,#1WR-C,1.0,24.0,0.0,2.0,0.0,0.0,0.0,0.0,4.8,5.1,0.0,5.0,0.0,0.0,19.95,0.0,9.2,3.4,6.15,23.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12407407407407406,0.12407407407407406,0.15185185185185185,3,0
|
12631.0,Javier Assad,2025 Season,Reserve,R,0.0,0.95,3.0,3.2,0.0,0.0,5.1,4.5,0.0,4.5,5.0,0.0,0.0,25.95,0.0,6.6,2.5,1.5,16.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20601851851851852,0.20601851851851852,0.3805555555555556,0.0,5.0,9.0,5.0,4.0,,#1WR-C,1.0,24.0,0.0,2.0,0.0,0.0,0.0,0.0,4.8,5.1,0.0,5.0,0.0,0.0,19.95,0.0,9.2,3.4,6.15,23.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12407407407407406,0.12407407407407406,0.15185185185185185,3,0
|
||||||
12632.0,Luis Peralta,2025 Season,Replacement,L,0.0,0.8,4.0,0.0,0.0,0.0,2.7,10.0,0.0,10.05,5.0,0.0,0.0,17.95,3.75,6.949999999999999,0.0,1.2,16.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.25972222222222224,0.25972222222222224,0.36250000000000004,15.0,11.0,3.0,1.0,1.0,,#1WL-C,3.0,24.0,4.85,3.0,0.0,0.0,0.0,4.5,4.8,0.0,5.1,5.0,0.0,0.0,33.95,2.2,6.45,0.0,1.2,7.95,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2152777777777778,0.2152777777777778,0.4333333333333333,3,0
|
12632.0,Luis Peralta,2025 Season,Replacement,L,0.0,0.8,4.0,0.0,0.0,0.0,2.7,10.0,0.0,10.05,5.0,0.0,0.0,17.95,3.75,6.949999999999999,0.0,1.2,16.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.25972222222222224,0.25972222222222224,0.36250000000000004,15.0,11.0,3.0,1.0,1.0,,#1WL-C,3.0,24.0,4.85,3.0,0.0,0.0,0.0,4.5,4.8,0.0,5.1,5.0,0.0,0.0,33.95,2.2,6.45,0.0,1.2,7.95,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2152777777777778,0.2152777777777778,0.4333333333333333,3,0
|
||||||
12633.0,Austin Cox,2025 Season,Replacement,L,0.0,11.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,1.9,5.0,0.0,0.0,29.0,6.0,4.9,5.0,5.0,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18981481481481483,0.18981481481481483,0.5425925925925926,0.0,19.0,9.0,1.0,2.0,,#1WL-C,2.0,24.0,3.7,3.0,0.0,0.0,0.0,8.2,6.6,0.0,6.6,5.0,0.0,0.0,27.0,5.0,2.1,4.0,5.0,1.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.26944444444444443,0.26944444444444443,0.4898148148148148,4,0
|
12633.0,Austin Cox,2025 Season,Replacement,L,0.0,11.0,0.0,0.0,0.0,0.0,5.1,0.0,0.0,1.9,5.0,0.0,0.0,29.0,6.0,4.9,5.0,5.0,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18981481481481483,0.18981481481481483,0.5425925925925926,0.0,19.0,9.0,1.0,2.0,,#1WL-C,2.0,24.0,3.7,3.0,0.0,0.0,0.0,8.2,6.6,0.0,6.6,5.0,0.0,0.0,27.0,5.0,2.1,4.0,5.0,1.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.26944444444444443,0.26944444444444443,0.4898148148148148,4,0
|
||||||
@ -6713,7 +6713,7 @@ player_id,player_name,cardset_name,rarity,hand,variant,homerun_vl,bp_homerun_vl,
|
|||||||
12649.0,Grant Taylor,2025 Season,Reserve,R,0.0,0.0,0.0,0.0,0.0,0.0,3.3,5.7,0.0,5.0,5.0,0.0,0.0,39.0,4.0,2.7,4.0,5.0,5.3,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1527777777777778,0.1527777777777778,0.18333333333333332,0.0,20.0,9.0,1.0,1.0,1.0,#1WR-C,3.0,24.0,0.0,0.0,0.0,0.0,0.0,3.2,9.8,0.0,8.0,5.0,0.0,0.0,39.0,4.0,0.0,4.0,6.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2175925925925926,0.2175925925925926,0.24722222222222223,4,51
|
12649.0,Grant Taylor,2025 Season,Reserve,R,0.0,0.0,0.0,0.0,0.0,0.0,3.3,5.7,0.0,5.0,5.0,0.0,0.0,39.0,4.0,2.7,4.0,5.0,5.3,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1527777777777778,0.1527777777777778,0.18333333333333332,0.0,20.0,9.0,1.0,1.0,1.0,#1WR-C,3.0,24.0,0.0,0.0,0.0,0.0,0.0,3.2,9.8,0.0,8.0,5.0,0.0,0.0,39.0,4.0,0.0,4.0,6.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2175925925925926,0.2175925925925926,0.24722222222222223,4,51
|
||||||
12650.0,Shinnosuke Ogasawara,2025 Season,Replacement,L,0.0,3.0,2.0,0.0,0.0,0.0,3.2,4.5,0.0,4.75,5.0,0.0,0.0,35.0,5.0,0.8,4.0,5.5,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17546296296296296,0.17546296296296296,0.3162037037037037,0.0,5.0,-3.0,2.0,1.0,,#1WL-C,3.0,24.0,1.1,4.0,0.0,0.0,0.0,6.3,5.8,0.0,5.8,5.0,0.0,0.0,28.0,5.0,0.6,4.0,6.2,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2175925925925926,0.2175925925925926,0.36203703703703705,2,0
|
12650.0,Shinnosuke Ogasawara,2025 Season,Replacement,L,0.0,3.0,2.0,0.0,0.0,0.0,3.2,4.5,0.0,4.75,5.0,0.0,0.0,35.0,5.0,0.8,4.0,5.5,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17546296296296296,0.17546296296296296,0.3162037037037037,0.0,5.0,-3.0,2.0,1.0,,#1WL-C,3.0,24.0,1.1,4.0,0.0,0.0,0.0,6.3,5.8,0.0,5.8,5.0,0.0,0.0,28.0,5.0,0.6,4.0,6.2,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2175925925925926,0.2175925925925926,0.36203703703703705,2,0
|
||||||
12679.0,David Robertson,2025 Season,Replacement,R,0.0,5.3,0.0,0.0,0.0,3.2,0.0,7.4,7.25,0.0,5.0,0.0,0.0,33.0,4.0,2.7,4.0,6.0,1.15,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2375,0.2375,0.41435185185185186,0.0,0.0,-5.0,1.0,1.0,0.0,#1WR-C,1.0,24.0,2.25,2.0,0.0,0.0,0.0,6.55,0.0,0.0,1.5,5.0,0.0,0.0,35.0,4.0,0.2,5.0,5.0,9.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12777777777777777,0.12777777777777777,0.27870370370370373,2,0
|
12679.0,David Robertson,2025 Season,Replacement,R,0.0,5.3,0.0,0.0,0.0,3.2,0.0,7.4,7.25,0.0,5.0,0.0,0.0,33.0,4.0,2.7,4.0,6.0,1.15,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2375,0.2375,0.41435185185185186,0.0,0.0,-5.0,1.0,1.0,0.0,#1WR-C,1.0,24.0,2.25,2.0,0.0,0.0,0.0,6.55,0.0,0.0,1.5,5.0,0.0,0.0,35.0,4.0,0.2,5.0,5.0,9.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12777777777777777,0.12777777777777777,0.27870370370370373,2,0
|
||||||
12680.0,Michael Tonkin,2025 Season,Reserve,R,0.0,1.75,4.0,0.0,0.0,0.0,7.05,5.1,0.0,4.75,5.0,0.0,0.0,26.95,0.0,8.35,3.25,1.35,11.45,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.21435185185185185,0.21435185185185185,0.3837962962962963,0.0,8.0,-1.0,1.0,1.0,,#1WR-C,3.0,24.0,0.0,0.0,0.0,0.0,0.0,1.65,0.0,0.0,1.5,5.0,0.0,0.0,29.95,0.0,11.25,3.25,4.25,22.15,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.05231481481481482,0.05231481481481482,0.06759259259259259,3,0
|
12680.0,Michael Tonkin,2025 Season,Reserve,R,0.0,1.75,4.0,0.0,0.0,0.0,7.05,5.1,0.0,4.75,5.0,0.0,0.0,32.0,0.0,8.2,4.0,1.9,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.21435185185185185,0.21435185185185185,0.3837962962962963,0.0,8.0,-1.0,1.0,1.0,,#1WR-C,3.0,24.0,0.0,0.0,0.0,0.0,0.0,1.65,0.0,0.0,1.5,5.0,0.0,0.0,34.0,0.0,5.35,4.0,8.0,16.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.052314814814814814,0.052314814814814814,0.06759259259259259,3,0
|
||||||
12681.0,Chris Devenski,2025 Season,MVP,R,0.0,0.0,0.0,0.0,0.0,0.0,6.6,1.75,0.0,1.7,0.0,0.0,0.0,19.0,4.0,6.4,4.0,7.25,28.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.09305555555555556,0.09305555555555556,0.15416666666666667,0.0,0.0,-1.0,1.0,1.0,,#1WR-C,3.0,24.0,0.0,2.0,0.0,0.0,4.9,0.0,2.1,2.2,0.0,5.0,0.0,0.0,48.0,4.0,0.0,4.0,5.0,1.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1175925925925926,0.1175925925925926,0.19074074074074074,2,0
|
12681.0,Chris Devenski,2025 Season,MVP,R,0.0,0.0,0.0,0.0,0.0,0.0,6.6,1.75,0.0,1.7,0.0,0.0,0.0,19.0,4.0,6.4,4.0,7.25,28.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.09305555555555556,0.09305555555555556,0.15416666666666667,0.0,0.0,-1.0,1.0,1.0,,#1WR-C,3.0,24.0,0.0,2.0,0.0,0.0,4.9,0.0,2.1,2.2,0.0,5.0,0.0,0.0,48.0,4.0,0.0,4.0,5.0,1.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1175925925925926,0.1175925925925926,0.19074074074074074,2,0
|
||||||
12682.0,Paul Sewald,2025 Season,Reserve,R,0.0,0.0,4.0,0.0,0.0,0.0,3.4,6.1,0.0,6.1,5.0,0.0,0.0,21.0,4.0,5.6,11.0,5.0,3.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18611111111111112,0.18611111111111112,0.27314814814814814,0.0,0.0,9.0,1.0,1.0,0.0,#1WR-C,3.0,24.0,1.4,3.0,0.0,0.0,4.5,0.0,2.1,1.9,0.0,5.0,0.0,0.0,38.0,4.0,7.6,5.0,6.4,0.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1287037037037037,0.1287037037037037,0.25092592592592594,3,51
|
12682.0,Paul Sewald,2025 Season,Reserve,R,0.0,0.0,4.0,0.0,0.0,0.0,3.4,6.1,0.0,6.1,5.0,0.0,0.0,21.0,4.0,5.6,11.0,5.0,3.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18611111111111112,0.18611111111111112,0.27314814814814814,0.0,0.0,9.0,1.0,1.0,0.0,#1WR-C,3.0,24.0,1.4,3.0,0.0,0.0,4.5,0.0,2.1,1.9,0.0,5.0,0.0,0.0,38.0,4.0,7.6,5.0,6.4,0.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1287037037037037,0.1287037037037037,0.25092592592592594,3,51
|
||||||
12683.0,Tim Mayza,2025 Season,Reserve,L,0.0,0.0,0.0,0.0,0.0,0.0,3.25,0.0,0.0,7.8,5.0,0.0,0.0,41.0,5.0,1.75,0.0,5.0,9.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12546296296296297,0.12546296296296297,0.15555555555555556,0.0,12.0,9.0,1.0,1.0,,#1WL-C,3.0,24.0,1.3,3.0,0.0,0.0,0.0,6.4,5.4,0.0,5.1,5.0,0.0,0.0,21.0,13.0,7.3,4.0,6.6,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20555555555555555,0.20555555555555555,0.3425925925925926,3,0
|
12683.0,Tim Mayza,2025 Season,Reserve,L,0.0,0.0,0.0,0.0,0.0,0.0,3.25,0.0,0.0,7.8,5.0,0.0,0.0,41.0,5.0,1.75,0.0,5.0,9.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12546296296296297,0.12546296296296297,0.15555555555555556,0.0,12.0,9.0,1.0,1.0,,#1WL-C,3.0,24.0,1.3,3.0,0.0,0.0,0.0,6.4,5.4,0.0,5.1,5.0,0.0,0.0,21.0,13.0,7.3,4.0,6.6,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20555555555555555,0.20555555555555555,0.3425925925925926,3,0
|
||||||
@ -6729,7 +6729,7 @@ player_id,player_name,cardset_name,rarity,hand,variant,homerun_vl,bp_homerun_vl,
|
|||||||
12693.0,Justin Hagenman,2025 Season,Replacement,R,0.0,3.5,2.0,0.0,0.0,0.0,5.7,6.8,0.0,6.85,5.0,0.0,0.0,21.95,0.0,9.5,1.1,2.1,14.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2439814814814815,0.2439814814814815,0.4217592592592592,0.0,0.0,9.0,2.0,1.0,3.0,#1WR-C,2.0,24.0,0.0,2.0,0.0,0.0,0.0,3.25,1.6,0.0,1.5,5.0,0.0,0.0,42.95,0.0,8.7,1.25,1.2,11.55,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.0912037037037037,0.0912037037037037,0.14907407407407408,3,0
|
12693.0,Justin Hagenman,2025 Season,Replacement,R,0.0,3.5,2.0,0.0,0.0,0.0,5.7,6.8,0.0,6.85,5.0,0.0,0.0,21.95,0.0,9.5,1.1,2.1,14.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2439814814814815,0.2439814814814815,0.4217592592592592,0.0,0.0,9.0,2.0,1.0,3.0,#1WR-C,2.0,24.0,0.0,2.0,0.0,0.0,0.0,3.25,1.6,0.0,1.5,5.0,0.0,0.0,42.95,0.0,8.7,1.25,1.2,11.55,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.0912037037037037,0.0912037037037037,0.14907407407407408,3,0
|
||||||
12694.0,Joel Peguero,2025 Season,Replacement,R,0.0,1.65,5.0,0.0,0.0,0.0,6.6,7.25,0.0,7.6,5.0,0.0,0.0,20.0,0.0,0.75,5.0,3.75,14.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2601851851851852,0.2601851851851852,0.43657407407407406,13.0,0.0,9.0,1.0,1.0,,#1WR-C,2.0,24.0,0.0,0.0,0.0,0.0,0.0,1.1,2.4,0.0,2.4,0.0,0.0,0.0,42.0,4.0,8.9,5.0,5.6,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.05462962962962963,0.05462962962962963,0.06481481481481481,4,0
|
12694.0,Joel Peguero,2025 Season,Replacement,R,0.0,1.65,5.0,0.0,0.0,0.0,6.6,7.25,0.0,7.6,5.0,0.0,0.0,20.0,0.0,0.75,5.0,3.75,14.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2601851851851852,0.2601851851851852,0.43657407407407406,13.0,0.0,9.0,1.0,1.0,,#1WR-C,2.0,24.0,0.0,0.0,0.0,0.0,0.0,1.1,2.4,0.0,2.4,0.0,0.0,0.0,42.0,4.0,8.9,5.0,5.6,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.05462962962962963,0.05462962962962963,0.06481481481481481,4,0
|
||||||
12695.0,Johan Oviedo,2025 Season,Hall of Fame,R,0.0,0.0,3.0,0.0,0.0,2.8,0.0,0.0,0.0,0.0,5.0,0.0,0.0,40.0,0.0,6.2,9.0,8.0,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.06296296296296296,0.06296296296296296,0.13055555555555556,7.0,5.0,-1.0,4.0,1.0,,#1WR-C,1.0,24.0,0.0,3.0,0.0,0.0,0.0,2.8,3.4,0.0,3.5,5.0,0.0,0.0,35.0,2.0,5.2,6.0,4.6,7.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12685185185185185,0.12685185185185185,0.19444444444444445,3,0
|
12695.0,Johan Oviedo,2025 Season,Hall of Fame,R,0.0,0.0,3.0,0.0,0.0,2.8,0.0,0.0,0.0,0.0,5.0,0.0,0.0,40.0,0.0,6.2,9.0,8.0,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.06296296296296296,0.06296296296296296,0.13055555555555556,7.0,5.0,-1.0,4.0,1.0,,#1WR-C,1.0,24.0,0.0,3.0,0.0,0.0,0.0,2.8,3.4,0.0,3.5,5.0,0.0,0.0,35.0,2.0,5.2,6.0,4.6,7.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12685185185185185,0.12685185185185185,0.19444444444444445,3,0
|
||||||
12696.0,Pj Poulin,2025 Season,Starter,L,0.0,2.45,2.0,0.0,0.0,2.4,0.0,4.5,4.5,0.0,5.0,0.0,0.0,54.95,0.0,1.5,0.0,0.0,1.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16064814814814815,0.16064814814814815,0.27870370370370373,0.0,0.0,9.0,1.0,1.0,0.0,#1WL-C,2.0,24.0,0.0,0.0,0.0,0.0,0.0,1.6,7.5,0.0,7.55,5.0,0.0,0.0,27.95,3.2,6.3999999999999995,0.0,2.2,17.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17731481481481481,0.17731481481481481,0.19212962962962962,3,50
|
12696.0,Pj Poulin,2025 Season,Starter,L,0.0,2.4,2.0,0.0,0.0,2.4,0.0,4.55,4.5,0.0,5.0,0.0,0.0,39.0,4.0,1.6,4.0,8.0,1.55,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16064814814814815,0.16064814814814815,0.2773148148148148,0.0,0.0,9.0,1.0,1.0,0.0,#1WL-C,2.0,24.0,0.0,0.0,0.0,0.0,0.0,1.6,7.5,0.0,7.5,5.0,0.0,0.0,29.0,5.0,2.4,4.0,5.5,11.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17685185185185184,0.17685185185185184,0.19166666666666668,3,50
|
||||||
12697.0,Hunter Stratton,2025 Season,Replacement,R,0.0,0.0,2.0,0.0,0.0,0.0,3.6,14.25,0.0,14.2,5.0,0.0,0.0,23.0,0.0,2.4,4.0,4.0,4.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.32916666666666666,0.32916666666666666,0.3902777777777778,0.0,0.0,9.0,1.0,1.0,2.0,#1WR-C,3.0,24.0,0.0,3.0,0.0,0.0,0.0,2.7,3.25,0.0,3.25,5.0,0.0,0.0,26.0,0.0,12.3,8.0,2.75,11.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12222222222222222,0.12222222222222222,0.18888888888888888,3,0
|
12697.0,Hunter Stratton,2025 Season,Replacement,R,0.0,0.0,2.0,0.0,0.0,0.0,3.6,14.25,0.0,14.2,5.0,0.0,0.0,23.0,0.0,2.4,4.0,4.0,4.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.32916666666666666,0.32916666666666666,0.3902777777777778,0.0,0.0,9.0,1.0,1.0,2.0,#1WR-C,3.0,24.0,0.0,3.0,0.0,0.0,0.0,2.7,3.25,0.0,3.25,5.0,0.0,0.0,26.0,0.0,12.3,8.0,2.75,11.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12222222222222222,0.12222222222222222,0.18888888888888888,3,0
|
||||||
12698.0,Kai Wei Teng,2025 Season,Starter,R,0.0,0.0,2.0,0.0,0.0,0.0,2.8,6.8,0.0,6.8,5.0,0.0,0.0,35.0,0.0,6.2,6.0,4.2,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18425925925925926,0.18425925925925926,0.23796296296296296,0.0,0.0,9.0,4.0,3.0,,#1WR-C,2.0,24.0,0.0,1.0,0.0,0.0,0.0,5.5,4.5,0.0,5.0,5.0,0.0,0.0,45.0,4.0,0.0,4.0,5.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16666666666666666,0.16666666666666666,0.23148148148148148,4,51
|
12698.0,Kai Wei Teng,2025 Season,Starter,R,0.0,0.0,2.0,0.0,0.0,0.0,2.8,6.8,0.0,6.8,5.0,0.0,0.0,35.0,0.0,6.2,6.0,4.2,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18425925925925926,0.18425925925925926,0.23796296296296296,0.0,0.0,9.0,4.0,3.0,,#1WR-C,2.0,24.0,0.0,1.0,0.0,0.0,0.0,5.5,4.5,0.0,5.0,5.0,0.0,0.0,45.0,4.0,0.0,4.0,5.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16666666666666666,0.16666666666666666,0.23148148148148148,4,51
|
||||||
12699.0,Kyle Bradish,2025 Season,MVP,R,0.0,0.0,2.0,0.0,0.0,0.0,3.3,4.8,0.0,4.0,5.0,0.0,0.0,39.0,4.0,2.7,4.0,9.0,1.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14444444444444443,0.14444444444444443,0.20277777777777778,0.0,0.0,-5.0,5.0,1.0,,#1WR-C,2.0,24.0,0.0,1.0,0.0,0.0,0.0,0.0,3.0,2.5,0.0,5.0,0.0,0.0,47.0,4.0,4.0,5.0,5.0,2.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.0787037037037037,0.0787037037037037,0.09259259259259259,3,0
|
12699.0,Kyle Bradish,2025 Season,MVP,R,0.0,0.0,2.0,0.0,0.0,0.0,3.3,4.8,0.0,4.0,5.0,0.0,0.0,39.0,4.0,2.7,4.0,9.0,1.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14444444444444443,0.14444444444444443,0.20277777777777778,0.0,0.0,-5.0,5.0,1.0,,#1WR-C,2.0,24.0,0.0,1.0,0.0,0.0,0.0,0.0,3.0,2.5,0.0,5.0,0.0,0.0,47.0,4.0,4.0,5.0,5.0,2.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.0787037037037037,0.0787037037037037,0.09259259259259259,3,0
|
||||||
@ -6740,7 +6740,7 @@ player_id,player_name,cardset_name,rarity,hand,variant,homerun_vl,bp_homerun_vl,
|
|||||||
12704.0,Taylor Rashi,2025 Season,Reserve,R,0.0,0.0,0.0,0.0,0.0,0.0,3.4,1.1,0.0,0.0,5.0,0.0,0.0,51.0,4.0,4.6,5.0,4.9,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.06481481481481481,0.06481481481481481,0.0962962962962963,0.0,12.0,-3.0,1.0,2.0,2.0,#1WR-C,3.0,24.0,0.0,0.0,0.0,0.0,0.0,7.9,9.1,0.0,4.0,5.0,0.0,0.0,33.0,7.0,0.0,4.0,9.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2175925925925926,0.2175925925925926,0.29074074074074074,3,0
|
12704.0,Taylor Rashi,2025 Season,Reserve,R,0.0,0.0,0.0,0.0,0.0,0.0,3.4,1.1,0.0,0.0,5.0,0.0,0.0,51.0,4.0,4.6,5.0,4.9,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.06481481481481481,0.06481481481481481,0.0962962962962963,0.0,12.0,-3.0,1.0,2.0,2.0,#1WR-C,3.0,24.0,0.0,0.0,0.0,0.0,0.0,7.9,9.1,0.0,4.0,5.0,0.0,0.0,33.0,7.0,0.0,4.0,9.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2175925925925926,0.2175925925925926,0.29074074074074074,3,0
|
||||||
12705.0,Sam Aldegheri,2025 Season,Replacement,L,0.0,1.5,3.0,0.0,0.0,0.0,4.5,6.5,6.5,0.0,5.0,0.0,0.0,33.0,4.0,5.0,0.0,1.5,8.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.21296296296296297,0.21296296296296297,0.33796296296296297,0.0,15.0,-1.0,3.0,2.0,,#1WL-C,3.0,24.0,0.0,4.0,0.0,0.0,0.0,8.3,8.5,0.0,8.6,5.0,0.0,0.0,26.0,5.0,2.7,0.0,4.5,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.27685185185185185,0.27685185185185185,0.40925925925925927,3,0
|
12705.0,Sam Aldegheri,2025 Season,Replacement,L,0.0,1.5,3.0,0.0,0.0,0.0,4.5,6.5,6.5,0.0,5.0,0.0,0.0,33.0,4.0,5.0,0.0,1.5,8.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.21296296296296297,0.21296296296296297,0.33796296296296297,0.0,15.0,-1.0,3.0,2.0,,#1WL-C,3.0,24.0,0.0,4.0,0.0,0.0,0.0,8.3,8.5,0.0,8.6,5.0,0.0,0.0,26.0,5.0,2.7,0.0,4.5,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.27685185185185185,0.27685185185185185,0.40925925925925927,3,0
|
||||||
12706.0,Edgardo Henriquez,2025 Season,Reserve,R,0.0,1.6,6.0,0.0,0.0,0.0,7.65,1.9,0.0,1.8,0.0,0.0,0.0,40.0,0.0,5.75,4.0,4.0,4.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1476851851851852,0.1476851851851852,0.34629629629629627,0.0,20.0,-3.0,1.0,1.0,0.0,#1WR-C,3.0,24.0,0.0,0.0,0.0,0.0,1.7,0.0,6.9,6.9,0.0,5.0,0.0,0.0,28.0,0.0,4.0,5.0,9.4,12.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16666666666666666,0.16666666666666666,0.1824074074074074,3,51
|
12706.0,Edgardo Henriquez,2025 Season,Reserve,R,0.0,1.6,6.0,0.0,0.0,0.0,7.65,1.9,0.0,1.8,0.0,0.0,0.0,40.0,0.0,5.75,4.0,4.0,4.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1476851851851852,0.1476851851851852,0.34629629629629627,0.0,20.0,-3.0,1.0,1.0,0.0,#1WR-C,3.0,24.0,0.0,0.0,0.0,0.0,1.7,0.0,6.9,6.9,0.0,5.0,0.0,0.0,28.0,0.0,4.0,5.0,9.4,12.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16666666666666666,0.16666666666666666,0.1824074074074074,3,51
|
||||||
12707.0,Clayton Beeter,2025 Season,Hall of Fame,R,0.0,3.3,3.0,0.0,0.0,0.0,2.2,0.0,0.0,0.0,5.0,0.0,0.0,43.95,0.0,7.95,3.2,1.6,8.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.08796296296296297,0.08796296296296297,0.24166666666666667,0.0,8.0,0.0,1.0,1.0,0.0,#1WR-C,3.0,24.0,0.0,0.0,0.0,0.0,0.0,0.0,2.25,0.0,2.2,5.0,0.0,0.0,58.95,0.0,2.3,1.1,0.0,7.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.06435185185185185,0.06435185185185185,0.06435185185185185,3,0
|
12707.0,Clayton Beeter,2025 Season,Hall of Fame,R,0.0,3.3,3.0,0.0,0.0,0.0,2.2,0.0,0.0,0.0,5.0,0.0,0.0,48.0,0.0,4.5,5.0,0.0,8.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.08796296296296297,0.08796296296296297,0.24166666666666667,0.0,8.0,0.0,1.0,1.0,0.0,#1WR-C,3.0,24.0,0.0,0.0,0.0,0.0,0.0,0.0,2.25,0.0,2.2,5.0,0.0,0.0,47.0,4.0,0.0,6.0,4.0,6.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.06435185185185185,0.06435185185185185,0.06435185185185185,3,0
|
||||||
12708.0,Connor Phillips,2025 Season,MVP,R,0.0,2.7,2.0,0.0,0.0,0.0,4.55,2.6,0.0,2.4,0.0,0.0,0.0,45.0,4.0,2.75,4.0,6.0,1.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12268518518518519,0.12268518518518519,0.2675925925925926,0.0,16.0,-1.0,1.0,1.0,,#1WR-C,2.0,24.0,0.0,1.0,0.0,0.0,1.3,0.0,1.7,1.7,0.0,0.0,0.0,0.0,39.0,5.0,7.0,9.0,5.0,8.3,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.04814814814814815,0.04814814814814815,0.07407407407407407,3,51
|
12708.0,Connor Phillips,2025 Season,MVP,R,0.0,2.7,2.0,0.0,0.0,0.0,4.55,2.6,0.0,2.4,0.0,0.0,0.0,45.0,4.0,2.75,4.0,6.0,1.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12268518518518519,0.12268518518518519,0.2675925925925926,0.0,16.0,-1.0,1.0,1.0,,#1WR-C,2.0,24.0,0.0,1.0,0.0,0.0,1.3,0.0,1.7,1.7,0.0,0.0,0.0,0.0,39.0,5.0,7.0,9.0,5.0,8.3,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.04814814814814815,0.04814814814814815,0.07407407407407407,3,51
|
||||||
12709.0,Bubba Chandler,2025 Season,All-Star,R,0.0,0.0,2.0,0.0,0.0,4.4,0.0,0.0,1.5,0.0,5.0,0.0,0.0,45.0,4.0,0.6,4.0,4.0,8.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.08703703703703704,0.08703703703703704,0.15555555555555556,0.0,6.0,9.0,4.0,3.0,0.0,#1WR-C,2.0,24.0,0.0,1.0,0.0,0.0,0.0,5.0,5.8,0.0,5.75,5.0,0.0,0.0,35.0,0.0,4.0,4.0,5.2,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18101851851851852,0.18101851851851852,0.2412037037037037,2,0
|
12709.0,Bubba Chandler,2025 Season,All-Star,R,0.0,0.0,2.0,0.0,0.0,4.4,0.0,0.0,1.5,0.0,5.0,0.0,0.0,45.0,4.0,0.6,4.0,4.0,8.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.08703703703703704,0.08703703703703704,0.15555555555555556,0.0,6.0,9.0,4.0,3.0,0.0,#1WR-C,2.0,24.0,0.0,1.0,0.0,0.0,0.0,5.0,5.8,0.0,5.75,5.0,0.0,0.0,35.0,0.0,4.0,4.0,5.2,6.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18101851851851852,0.18101851851851852,0.2412037037037037,2,0
|
||||||
12710.0,Mccade Brown,2025 Season,Replacement,R,0.0,1.7,4.0,0.0,0.0,0.0,4.2,9.4,0.0,9.35,5.0,0.0,0.0,25.95,0.0,5.999999999999999,3.2,0.0,10.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2699074074074074,0.2699074074074074,0.4115740740740741,0.0,8.0,4.0,4.0,1.0,,#1WR-C,2.0,24.0,0.75,4.0,0.0,0.0,0.0,5.85,2.1,0.0,1.95,5.0,0.0,0.0,32.95,0.0,10.450000000000001,1.2,2.1,12.65,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14027777777777775,0.14027777777777775,0.2708333333333333,3,0
|
12710.0,Mccade Brown,2025 Season,Replacement,R,0.0,1.7,4.0,0.0,0.0,0.0,4.2,9.4,0.0,9.35,5.0,0.0,0.0,25.95,0.0,5.999999999999999,3.2,0.0,10.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2699074074074074,0.2699074074074074,0.4115740740740741,0.0,8.0,4.0,4.0,1.0,,#1WR-C,2.0,24.0,0.75,4.0,0.0,0.0,0.0,5.85,2.1,0.0,1.95,5.0,0.0,0.0,32.95,0.0,10.450000000000001,1.2,2.1,12.65,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14027777777777775,0.14027777777777775,0.2708333333333333,3,0
|
||||||
|
|||||||
|
Can't render this file because it is too large.
|
90
scripts/update_scouting.py
Executable file
90
scripts/update_scouting.py
Executable file
@ -0,0 +1,90 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
"""
|
||||||
|
Quick scouting update script for Paper Dynasty.
|
||||||
|
|
||||||
|
This script runs from the card-creation directory and:
|
||||||
|
1. Runs scouting_batters.py to generate batting reports
|
||||||
|
2. Runs scouting_pitchers.py to generate pitching reports
|
||||||
|
3. Uploads generated CSV files to database server via SSH
|
||||||
|
|
||||||
|
Usage:
|
||||||
|
cd /mnt/NV2/Development/paper-dynasty/card-creation
|
||||||
|
uv run scripts/update_scouting.py
|
||||||
|
"""
|
||||||
|
|
||||||
|
import subprocess
|
||||||
|
import sys
|
||||||
|
from pathlib import Path
|
||||||
|
import logging
|
||||||
|
|
||||||
|
logging.basicConfig(
|
||||||
|
level=logging.INFO,
|
||||||
|
format='%(message)s'
|
||||||
|
)
|
||||||
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
|
def run_command(cmd: list[str], description: str) -> bool:
|
||||||
|
"""Run a command and return success status."""
|
||||||
|
logger.info(f"→ {description}...")
|
||||||
|
try:
|
||||||
|
subprocess.run(cmd, check=True, cwd=Path(__file__).parent.parent)
|
||||||
|
logger.info(f"✓ {description} complete")
|
||||||
|
return True
|
||||||
|
except subprocess.CalledProcessError as e:
|
||||||
|
logger.error(f"✗ {description} failed: {e}")
|
||||||
|
return False
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
"""Execute the scouting update workflow."""
|
||||||
|
logger.info("=" * 60)
|
||||||
|
logger.info("Paper Dynasty - Scouting Update")
|
||||||
|
logger.info("=" * 60)
|
||||||
|
|
||||||
|
# Step 1: Generate batting scouting
|
||||||
|
if not run_command(
|
||||||
|
['uv', 'run', 'scouting_batters.py'],
|
||||||
|
"Generating batting scouting reports"
|
||||||
|
):
|
||||||
|
return 1
|
||||||
|
|
||||||
|
# Step 2: Generate pitching scouting
|
||||||
|
if not run_command(
|
||||||
|
['uv', 'run', 'scouting_pitchers.py'],
|
||||||
|
"Generating pitching scouting reports"
|
||||||
|
):
|
||||||
|
return 1
|
||||||
|
|
||||||
|
# Step 3: Verify files exist
|
||||||
|
scouting_dir = Path(__file__).parent.parent / 'scouting'
|
||||||
|
required_files = [
|
||||||
|
'batting-basic.csv',
|
||||||
|
'batting-ratings.csv',
|
||||||
|
'pitching-basic.csv',
|
||||||
|
'pitching-ratings.csv'
|
||||||
|
]
|
||||||
|
|
||||||
|
logger.info("→ Verifying generated files...")
|
||||||
|
missing = [f for f in required_files if not (scouting_dir / f).exists()]
|
||||||
|
if missing:
|
||||||
|
logger.error(f"✗ Missing files: {', '.join(missing)}")
|
||||||
|
return 1
|
||||||
|
logger.info(f"✓ All {len(required_files)} files verified")
|
||||||
|
|
||||||
|
# Step 4: Upload to database server
|
||||||
|
files_to_upload = [str(scouting_dir / f) for f in required_files]
|
||||||
|
if not run_command(
|
||||||
|
['scp', *files_to_upload, 'sba-db:/home/cal/container-data/pd-database/storage/'],
|
||||||
|
"Uploading files to database server"
|
||||||
|
):
|
||||||
|
return 1
|
||||||
|
|
||||||
|
logger.info("=" * 60)
|
||||||
|
logger.info("✓ Scouting update complete!")
|
||||||
|
logger.info("=" * 60)
|
||||||
|
return 0
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
sys.exit(main())
|
||||||
Loading…
Reference in New Issue
Block a user