mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
45 lines
2.2 KiB
C++
45 lines
2.2 KiB
C++
class cfgAmmo {
|
|
class BulletCore;
|
|
class BulletBase: BulletCore {
|
|
ace_windcoef = 0.4;
|
|
};
|
|
class B_545x39_Ball: BulletBase {
|
|
ace_windcoef = 0.55;
|
|
//ace_drift[] = {{0,0},{100,0.03},{200,0.07},{300,0.25},{400,0.42},{500,0.79},{600,1.27},{700,2},{800,2.98},{900,4.35},{1000,6.2}};
|
|
};
|
|
class B_556x45_Ball: BulletBase {
|
|
ace_windcoef = 0.55;
|
|
//ace_drift[] = {{0,0},{100,0.03},{200,0.07},{300,0.17},{400,0.37},{500,0.71},{600,1.2},{700,1.81},{800,2.75},{900,4},{1000,6.2}};
|
|
};
|
|
class B_762x39_Ball: BulletBase {
|
|
ace_windcoef = 0.59;
|
|
//ace_drift[] = {{0,0},{100,0.05},{200,0.1},{300,0.38},{400,0.75},{500,1.37}};
|
|
};
|
|
class B_9x39_SP5: BulletBase {
|
|
ace_windcoef = 0.2;
|
|
//ace_drift[] = {{0,0},{100,0.06},{200,0.25},{300,0.6},{400,1.1}};
|
|
};
|
|
class B_762x51_Ball: BulletBase {
|
|
ace_windcoef = 0.4;
|
|
//ace_drift[] = {{0,0},{100,0.03},{200,0.08},{300,0.18},{400,0.305},{500,0.57},{600,0.92},{700,1.3},{800,1.85},{900,2.5},{1000,3.3}};
|
|
};
|
|
class B_762x54_Ball: BulletBase {
|
|
ace_windcoef = 0.45;
|
|
//ace_drift[] = {{0,0},{100,0.025},{200,0.085},{300,0.19},{400,0.36},{500,0.6},{600,0.98},{700,1.45},{800,2.1},{900,2.9},{1000,4.15}};
|
|
};
|
|
class B_127x99_Ball: BulletBase {
|
|
ace_windcoef = 0.24;
|
|
//ace_drift[] = {{0,0},{100,0.013},{200,0.03},{300,0.07},{400,0.139},{500,0.211},{600,0.41},{700,0.46},{800,0.7},{900,0.93},{1000,1.24},{1100,1.6},{1200,2},{1300,2.42},{1400,3},{1500,3.66},{1600,4.35},{1700,5.2},{1800,6.1},{1900,7.2},{2000,8.4}};
|
|
};
|
|
class B_127x108_Ball: BulletBase {
|
|
ace_windcoef = 0.24;
|
|
//ace_drift[] = {{0,0},{100,0.013},{200,0.03},{300,0.07},{400,0.139},{500,0.211},{600,0.41},{700,0.46},{800,0.8},{900,1.1},{1000,1.5},{1100,1.9},{1200,2.3},{1300,2.87},{1400,3.5},{1500,4.25},{1600,5.05},{1700,6.1},{1800,7.25},{1900,8.55},{2000,11.2}};
|
|
};
|
|
class B_127x107_Ball: BulletBase {
|
|
ace_windcoef = 0.24;
|
|
//ace_drift[] = {{0,0},{100,0.013},{200,0.03},{300,0.07},{400,0.139},{500,0.211},{600,0.337},{700,0.46},{800,0.64},{900,0.85},{1000,1.15},{1100,1.45},{1200,1.9},{1300,2.3},{1400,2.9},{1500,3.53},{1600,4.35},{1700,5.2},{1800,6.3},{1900,7.4},{2000,9.7}};
|
|
};
|
|
class B_86x70_Ball_noTracer: BulletBase {
|
|
ace_windcoef = 0.25;
|
|
};
|
|
}; |