{% extends "comparison/base.html" %} {% load staticfiles %} {% block head %} {% endblock %} {% block panel_title %}Kart Components{% endblock %} {% block panel_alt_title %} {% endblock %} {% block nav_components_active %}active{% endblock %} {% block content-header %}
View the (hidden) stats of every single component in Mario Kart 8.

Need to find a wheel with the highest speed or wondering which kart has the best acceleration? Use this sortable table to view all of the components' stats at a quick glance. Individual columns can be toggled using the View dropdown on the right. Additionally, you may click on a component's row to highlight other components with identical stats.

{% endblock %} {% block content %}
{% for component in components %}
{% for item in component.items %} {% empty %} {% endfor %}
Icon Name Speed Water Air Antigrav Accel Weight Handling Water Air Antigrav Traction Miniturbo
{{ item.name }} {{ item.name }} {% if item.stats.speed_ground %}{{ item.stats.speed_ground }}{% else %}{{ item.speed_ground }}{% endif %} {% if item.stats.speed_water %}{{ item.stats.speed_water }}{% else %}{{ item.speed_water }}{% endif %} {% if item.stats.speed_air %}{{ item.stats.speed_air }}{% else %}{{ item.speed_air }}{% endif %} {% if item.stats.speed_antigravity %}{{ item.stats.speed_antigravity }}{% else %}{{ item.speed_antigravity }}{% endif %} {% if item.stats.acceleration %}{{ item.stats.acceleration }}{% else %}{{ item.acceleration }}{% endif %} {% if item.stats.weight %}{{ item.stats.weight }}{% else %}{{ item.weight }}{% endif %} {% if item.stats.handling_ground %}{{ item.stats.handling_ground }}{% else %}{{ item.handling_ground }}{% endif %} {% if item.stats.handling_water %}{{ item.stats.handling_water }}{% else %}{{ item.handling_water }}{% endif %} {% if item.stats.handling_air %}{{ item.stats.handling_air }}{% else %}{{ item.handling_air }}{% endif %} {% if item.stats.handling_antigravity %}{{ item.stats.handling_antigravity }}{% else %}{{ item.handling_antigravity }}{% endif %} {% if item.stats.traction %}{{ item.stats.traction }}{% else %}{{ item.traction }}{% endif %} {% if item.stats.miniturbo %}{{ item.stats.miniturbo }}{% else %}{{ item.miniturbo }}{% endif %}
No items in database.
{% endfor %} {% endblock %} {% block script %} {% endblock %}