base init

This commit is contained in:
d1str4ught
2025-08-18 00:36:52 +02:00
parent cff3015742
commit 4e679320a3
527 changed files with 199969 additions and 0 deletions

View File

@@ -0,0 +1,58 @@
#include "stdafx.h"
#include "start_position.h"
char g_nation_name[4][32] =
{
"",
"신수국",
"천조국",
"진노국",
};
// LC_TEXT("신수국")
// LC_TEXT("천조국")
// LC_TEXT("진노국")
long g_start_map[4] =
{
0, // reserved
1, // 신수국
21, // 천조국
41 // 진노국
};
DWORD g_start_position[4][2] =
{
{ 0, 0 }, // reserved
{ 469300, 964200 }, // 신수국
{ 55700, 157900 }, // 천조국
{ 969600, 278400 } // 진노국
};
DWORD arena_return_position[4][2] =
{
{ 0, 0 },
{ 347600, 882700 }, // 자양현
{ 138600, 236600 }, // 복정현
{ 857200, 251800 } // 박라현
};
DWORD g_create_position[4][2] =
{
{ 0, 0 },
{ 459800, 953900 },
{ 52070, 166600 },
{ 957300, 255200 },
};
DWORD g_create_position_canada[4][2] =
{
{ 0, 0 },
{ 457100, 946900 },
{ 45700, 166500 },
{ 966300, 288300 },
};