Commit 6ba215c1 authored by satsuki8's avatar satsuki8

fix

parent f006ac06
...@@ -264,7 +264,7 @@ if($hp > 0){ ...@@ -264,7 +264,7 @@ if($hp > 0){
$mode='command'; $mode='command';
} }
//码语行人提取 //码语行人提取
} elseif ($sp_cmd == 'sp_extract_trait') { } elseif ($sp_cmd == 'sp_extract_trait') {
$position = 0; $position = 0;
if ($club == 21) { if ($club == 21) {
foreach (array(1, 2, 3, 4, 5, 6) as $imn) foreach (array(1, 2, 3, 4, 5, 6) as $imn)
...@@ -290,7 +290,7 @@ if($hp > 0){ ...@@ -290,7 +290,7 @@ if($hp > 0){
if ($choice_position < 1 || $choice_position > 6) if ($choice_position < 1 || $choice_position > 6)
$log .= '<span class="red">无此物品。</span><br />'; $log .= '<span class="red">无此物品。</span><br />';
else { else {
include_once GAME_ROOT . './include/game/special.func.php'; include_once GAME_ROOT . './include/game/club21.func.php';
item_extract_trait($choice, $choice_position); item_extract_trait($choice, $choice_position);
} }
$mode = 'command'; $mode = 'command';
...@@ -324,7 +324,7 @@ if($hp > 0){ ...@@ -324,7 +324,7 @@ if($hp > 0){
elseif ($choice == $choice2) elseif ($choice == $choice2)
$log .= '<span class="red">你选择了相同的代码片段。</span><br />'; $log .= '<span class="red">你选择了相同的代码片段。</span><br />';
else { else {
include_once GAME_ROOT . './include/game/special.func.php'; include_once GAME_ROOT . './include/game/club21.func.php';
item_add_trait($choice, $choice2); item_add_trait($choice, $choice2);
} }
$mode = 'command'; $mode = 'command';
......
...@@ -8,56 +8,56 @@ ...@@ -8,56 +8,56 @@
$itmsk_extract_rate = array( $itmsk_extract_rate = array(
'A' => 150, 'A' => 150,
'a' => 150, 'a' => 150,
'B' => 400, 'B' => 450,
'b' => 400, 'b' => 450,
'C' => 30, 'C' => 60,
'c' => 10, 'c' => 20,
'D' => 30, 'D' => 80,
'd' => 20, 'd' => 150,
'E' => 30, 'E' => 30,
'e' => 20, 'e' => 50,
'F' => 30, 'F' => 60,
'f' => 30, 'f' => 150,
'G' => 20, 'G' => 60,
'g' => 5, 'g' => 5,
'H' => 120, 'H' => 120,
'h' => 80, 'h' => 1500,
'I' => 30, 'I' => 30,
'i' => 20, 'i' => 50,
'J' => 200, 'J' => 200,
'j' => 200, 'j' => 200,
'K' => 30, 'K' => 60,
'k' => 30, 'k' => 150,
'L' => 50, 'L' => 50,
'l' => 5, 'l' => 5,
'M' => 100, 'M' => 120,
'm' => 100, 'm' => 120,
'N' => 20, 'N' => 180,
'n' => 40, 'n' => 300,
'o' => 5, 'o' => 5,
'P' => 20, 'P' => 60,
'p' => 30, 'p' => 50,
'q' => 30, 'q' => 30,
'R' => 60, 'R' => 100,
'r' => 60, 'r' => 220,
'S' => 20, 'S' => 20,
's' => 200, 's' => 200,
'U' => 30, 'U' => 30,
'u' => 20, 'u' => 50,
'V' => 100, 'V' => 100,
'v' => 100, 'v' => 100,
'W' => 30, 'W' => 30,
'w' => 20, 'w' => 50,
'X' => 800, 'X' => 800,
'x' => 50, 'x' => 80,
'y' => 40, 'y' => 320,
'Z' => 50, 'Z' => 100,
'z' => 1, 'z' => 1,
'-' => 200, '-' => 800,
'*' => 200, '*' => 800,
'+' => 200, '+' => 800,
'^' => 1200, '^' => 1200,
'🧰' => 200, '🧰' => 800,
'🍎' => 1000 '🍎' => 1000
); );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment