I'm using eaMod's SVN. I looked at rAthena's (and several other SVNs') source code, and it is no different for Warm Wind. As for Asura, I don't know where in rAthena's source code to edit the post-Asura SP regen.
case TK_SEVENWIND:
switch(skill_get_ele(skillid,skilllv)) {
case ELE_EARTH : type = SC_EARTHWEAPON; break;
case ELE_WIND : type = SC_WINDWEAPON; break;
case ELE_WATER : type = SC_WATERWEAPON; break;
case ELE_FIRE : type = SC_FIREWEAPON; break;
case ELE_GHOST : type = SC_GHOSTWEAPON; break;
case ELE_DARK : type = SC_SHADOWWEAPON; break;
case ELE_HOLY : type = SC_ASPERSIO; break;
}
clif_skill_nodamage(src,bl,skillid,skilllv,
sc_start(bl,type,100,skilllv,skill_get_time(skillid,skilllv)));
sc_start(bl,SC_SEVENWIND,100,skilllv,skill_get_time(skillid,skilllv));
break;
As you can see, it endows the weapon with the element, rather directly altering the attack property.