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

26
insert_monster.sql Normal file
View File

@@ -0,0 +1,26 @@
INSERT INTO `vckonline`.`monsters`
(`name`,
`area`,
`type`,
`order`,
`strength_cost`,
`magic_cost`,
`vp_reward`,
`gold_reward`,
`strength_reward`,
`magic_reward`,
`has_special_reward`,
`is_extra`)
VALUES
('',/*name*/
'',/*area*/
'',/*type*/
,/*order*/
,/*strength_cost*/
,/*magic_cost*/
,/*vp_reward*/
,/*gold_reward*/
,/*strength_reward*/
,/*magic_reward*/
,/*has_special_reward*/
/*is_extra*/);