am I actually working on this project again
This commit is contained in:
40
insert_starter.sql
Normal file
40
insert_starter.sql
Normal file
@@ -0,0 +1,40 @@
|
||||
INSERT INTO `vckonline`.`starters`
|
||||
(`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
|
||||
('Peasant',/*name*/
|
||||
0,/*gold_cost*/
|
||||
5,/*roll_match1*/
|
||||
0,/*roll_match2*/
|
||||
0,/*shadow_count*/
|
||||
0,/*holy_count*/
|
||||
0,/*soldier_count*/
|
||||
0,/*worker_count*/
|
||||
1,/*gold_payout_on_turn*/
|
||||
1,/*gold_payout_off_turn*/
|
||||
0,/*strength_payout_on_turn*/
|
||||
0,/*strength_payout_off_turn*/
|
||||
0,/*magic_payout_on_turn*/
|
||||
0,/*magic_payout_off_turn*/
|
||||
0,/*has_special_payout_on_turn*/
|
||||
0,/*has_special_payout_off_turn*/
|
||||
0,/*special_payout_on_turn*/
|
||||
0,/*special_payout_off_turn*/
|
||||
1/*special_citizen*/);
|
||||
Reference in New Issue
Block a user