am I actually working on this project again

This commit is contained in:
2023-04-09 15:33:21 -07:00
parent 31d8522470
commit 8c82234668
6 changed files with 181 additions and 9 deletions

40
insert_citizen.sql Normal file
View File

@@ -0,0 +1,40 @@
INSERT INTO `vckonline`.`citizens`
(`name`,
`gold_cost`,
`roll_match1`,
`roll_match2`,
`shadow_count`,
`holy_count`,
`soldier_count`,
`worker_count`,
`gold_payout_on_turn`,
`gold_payout_off_turn`,
`strength_payout_on_turn`,
`strength_payout_off_turn`,
`magic_payout_on_turn`,
`magic_payout_off_turn`,
`has_special_payout_on_turn`,
`has_special_payout_off_turn`,
`special_payout_on_turn`,
`special_payout_off_turn`,
`special_citizen`)
VALUES
('',/*name*/
,/*gold_cost*/
,/*roll_match1*/
,/*roll_match2*/
,/*shadow_count*/
,/*holy_count*/
,/*soldier_count*/
,/*worker_count*/
,/*gold_payout_on_turn*/
,/*gold_payout_off_turn*/
,/*strength_payout_on_turn*/
,/*strength_payout_off_turn*/
,/*magic_payout_on_turn*/
,/*magic_payout_off_turn*/
,/*has_special_payout_on_turn*/
,/*has_special_payout_off_turn*/
,/*special_payout_on_turn*/
,/*special_payout_off_turn*/
/*special_citizen*/);