-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2fe944d
commit 4962ef2
Showing
29 changed files
with
764 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
つくる('黒色のドレイク', 8, 6, 'map1', むき.した) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
this.しょうかんする('黒色のドレイク', 1, 0) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
import '../game' | ||
|
||
rule.つくられたとき(async function() { | ||
await this.みためをかえる('黒色のドレイク') | ||
this.なかま = なかま.モンスター | ||
this.たいりょく = 10 | ||
this.こうげきりょく = 1 | ||
this.スキル = 'どくえき' | ||
this.あるくはやさ = 0.5 | ||
|
||
/*+ つくられたとき */ | ||
}) | ||
|
||
rule.つねに(async function() { | ||
await this.てきをみつける() | ||
await this.まつ(1) | ||
await this.おいかける('プレイヤー') | ||
await this.おいかける('プレイヤー') | ||
await this.まつ(0.5) | ||
await this.こうげきする() | ||
await this.まつ(1) | ||
|
||
/*+ つねに */ | ||
}) | ||
|
||
rule.みつけたとき(async function(item) { | ||
if (item.は('プレイヤー')) { | ||
await this.うしろにあるく() | ||
await this.うしろにあるく() | ||
await this.こうげきする() | ||
|
||
/*+ みつけたとき */ | ||
} | ||
/*+ みつけたとき */ | ||
}) | ||
|
||
rule.たおされたとき(async function() { | ||
this.しょうかんする('銀色のほうせき', 0, 0) // アイテムをおとす | ||
|
||
/*+ たおされたとき */ | ||
}) | ||
|
||
rule.こうげきされたとき(async function(item) { | ||
if (item.は('プレイヤー')) { | ||
/*+ こうげきされたとき */ | ||
} | ||
/*+ こうげきされたとき */ | ||
}) | ||
|
||
rule.ぶつかったとき(async function(item) { | ||
if (item.は('プレイヤー')) { | ||
/*+ ぶつかったとき */ | ||
} | ||
/*+ ぶつかったとき */ | ||
}) | ||
|
||
rule.メッセージされたとき(async function(item) { | ||
/*+ メッセージされたとき */ | ||
}) | ||
|
||
rule.じかんがすすんだとき(async function() { | ||
/*+ じかんがすすんだとき */ | ||
}) | ||
|
||
rule.すすめなかったとき(async function() { | ||
/*+ すすめなかったとき */ | ||
}) | ||
|
||
rule.しょうかんされたとき(async function(item) { | ||
/*+ しょうかんされたとき */ | ||
}) | ||
|
||
rule.こうげきするとき(async function() { | ||
/*+ こうげきするとき */ | ||
}) | ||
|
||
rule.あるいたとき(async function() { | ||
/*+ あるいたとき */ | ||
}) | ||
|
||
rule.へんすうがかわったとき(async function() { | ||
/*+ へんすうがかわったとき */ | ||
}) | ||
|
||
rule.タップされたとき(async function() { | ||
/*+ タップされたとき */ | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
つくる('青色のドレイク', 7, 6, 'map1', むき.した) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
this.しょうかんする('青色のドレイク', 1, 0) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
import '../game' | ||
|
||
rule.つくられたとき(async function() { | ||
await this.みためをかえる('青色のドレイク') | ||
this.なかま = なかま.モンスター | ||
this.たいりょく = 10 | ||
this.こうげきりょく = 1 | ||
this.スキル = 'どくえき' | ||
this.あるくはやさ = 0.5 | ||
|
||
/*+ つくられたとき */ | ||
}) | ||
|
||
rule.つねに(async function() { | ||
await this.てきをみつける() | ||
await this.まつ(1) | ||
await this.おいかける('プレイヤー') | ||
await this.おいかける('プレイヤー') | ||
await this.まつ(0.5) | ||
await this.こうげきする() | ||
await this.まつ(1) | ||
|
||
/*+ つねに */ | ||
}) | ||
|
||
rule.みつけたとき(async function(item) { | ||
if (item.は('プレイヤー')) { | ||
await this.うしろにあるく() | ||
await this.うしろにあるく() | ||
await this.こうげきする() | ||
|
||
/*+ みつけたとき */ | ||
} | ||
/*+ みつけたとき */ | ||
}) | ||
|
||
rule.たおされたとき(async function() { | ||
this.しょうかんする('銀色のほうせき', 0, 0) // アイテムをおとす | ||
|
||
/*+ たおされたとき */ | ||
}) | ||
|
||
rule.こうげきされたとき(async function(item) { | ||
if (item.は('プレイヤー')) { | ||
/*+ こうげきされたとき */ | ||
} | ||
/*+ こうげきされたとき */ | ||
}) | ||
|
||
rule.ぶつかったとき(async function(item) { | ||
if (item.は('プレイヤー')) { | ||
/*+ ぶつかったとき */ | ||
} | ||
/*+ ぶつかったとき */ | ||
}) | ||
|
||
rule.メッセージされたとき(async function(item) { | ||
/*+ メッセージされたとき */ | ||
}) | ||
|
||
rule.じかんがすすんだとき(async function() { | ||
/*+ じかんがすすんだとき */ | ||
}) | ||
|
||
rule.すすめなかったとき(async function() { | ||
/*+ すすめなかったとき */ | ||
}) | ||
|
||
rule.しょうかんされたとき(async function(item) { | ||
/*+ しょうかんされたとき */ | ||
}) | ||
|
||
rule.こうげきするとき(async function() { | ||
/*+ こうげきするとき */ | ||
}) | ||
|
||
rule.あるいたとき(async function() { | ||
/*+ あるいたとき */ | ||
}) | ||
|
||
rule.へんすうがかわったとき(async function() { | ||
/*+ へんすうがかわったとき */ | ||
}) | ||
|
||
rule.タップされたとき(async function() { | ||
/*+ タップされたとき */ | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
つくる('緑色のドレイク', 9, 6, 'map1', むき.した) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
this.しょうかんする('緑色のドレイク', 1, 0) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
import '../game' | ||
|
||
rule.つくられたとき(async function() { | ||
await this.みためをかえる('緑色のドレイク') | ||
this.なかま = なかま.モンスター | ||
this.たいりょく = 10 | ||
this.こうげきりょく = 1 | ||
this.スキル = 'どくえき' | ||
this.あるくはやさ = 0.5 | ||
|
||
/*+ つくられたとき */ | ||
}) | ||
|
||
rule.つねに(async function() { | ||
await this.てきをみつける() | ||
await this.まつ(1) | ||
await this.おいかける('プレイヤー') | ||
await this.おいかける('プレイヤー') | ||
await this.まつ(0.5) | ||
await this.こうげきする() | ||
await this.まつ(1) | ||
|
||
/*+ つねに */ | ||
}) | ||
|
||
rule.みつけたとき(async function(item) { | ||
if (item.は('プレイヤー')) { | ||
await this.うしろにあるく() | ||
await this.うしろにあるく() | ||
await this.こうげきする() | ||
|
||
/*+ みつけたとき */ | ||
} | ||
/*+ みつけたとき */ | ||
}) | ||
|
||
rule.たおされたとき(async function() { | ||
this.しょうかんする('銀色のほうせき', 0, 0) // アイテムをおとす | ||
|
||
/*+ たおされたとき */ | ||
}) | ||
|
||
rule.こうげきされたとき(async function(item) { | ||
if (item.は('プレイヤー')) { | ||
/*+ こうげきされたとき */ | ||
} | ||
/*+ こうげきされたとき */ | ||
}) | ||
|
||
rule.ぶつかったとき(async function(item) { | ||
if (item.は('プレイヤー')) { | ||
/*+ ぶつかったとき */ | ||
} | ||
/*+ ぶつかったとき */ | ||
}) | ||
|
||
rule.メッセージされたとき(async function(item) { | ||
/*+ メッセージされたとき */ | ||
}) | ||
|
||
rule.じかんがすすんだとき(async function() { | ||
/*+ じかんがすすんだとき */ | ||
}) | ||
|
||
rule.すすめなかったとき(async function() { | ||
/*+ すすめなかったとき */ | ||
}) | ||
|
||
rule.しょうかんされたとき(async function(item) { | ||
/*+ しょうかんされたとき */ | ||
}) | ||
|
||
rule.こうげきするとき(async function() { | ||
/*+ こうげきするとき */ | ||
}) | ||
|
||
rule.あるいたとき(async function() { | ||
/*+ あるいたとき */ | ||
}) | ||
|
||
rule.へんすうがかわったとき(async function() { | ||
/*+ へんすうがかわったとき */ | ||
}) | ||
|
||
rule.タップされたとき(async function() { | ||
/*+ タップされたとき */ | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
つくる('赤色のドレイク', 10, 6, 'map1', むき.した) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
this.しょうかんする('赤色のドレイク', 1, 0) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
import '../game' | ||
|
||
rule.つくられたとき(async function() { | ||
await this.みためをかえる('赤色のドレイク') | ||
this.なかま = なかま.モンスター | ||
this.たいりょく = 10 | ||
this.こうげきりょく = 1 | ||
this.スキル = 'どくえき' | ||
this.あるくはやさ = 0.5 | ||
|
||
/*+ つくられたとき */ | ||
}) | ||
|
||
rule.つねに(async function() { | ||
await this.てきをみつける() | ||
await this.まつ(1) | ||
await this.おいかける('プレイヤー') | ||
await this.おいかける('プレイヤー') | ||
await this.まつ(0.5) | ||
await this.こうげきする() | ||
await this.まつ(1) | ||
|
||
/*+ つねに */ | ||
}) | ||
|
||
rule.みつけたとき(async function(item) { | ||
if (item.は('プレイヤー')) { | ||
await this.うしろにあるく() | ||
await this.うしろにあるく() | ||
await this.こうげきする() | ||
|
||
/*+ みつけたとき */ | ||
} | ||
/*+ みつけたとき */ | ||
}) | ||
|
||
rule.たおされたとき(async function() { | ||
this.しょうかんする('銀色のほうせき', 0, 0) // アイテムをおとす | ||
|
||
/*+ たおされたとき */ | ||
}) | ||
|
||
rule.こうげきされたとき(async function(item) { | ||
if (item.は('プレイヤー')) { | ||
/*+ こうげきされたとき */ | ||
} | ||
/*+ こうげきされたとき */ | ||
}) | ||
|
||
rule.ぶつかったとき(async function(item) { | ||
if (item.は('プレイヤー')) { | ||
/*+ ぶつかったとき */ | ||
} | ||
/*+ ぶつかったとき */ | ||
}) | ||
|
||
rule.メッセージされたとき(async function(item) { | ||
/*+ メッセージされたとき */ | ||
}) | ||
|
||
rule.じかんがすすんだとき(async function() { | ||
/*+ じかんがすすんだとき */ | ||
}) | ||
|
||
rule.すすめなかったとき(async function() { | ||
/*+ すすめなかったとき */ | ||
}) | ||
|
||
rule.しょうかんされたとき(async function(item) { | ||
/*+ しょうかんされたとき */ | ||
}) | ||
|
||
rule.こうげきするとき(async function() { | ||
/*+ こうげきするとき */ | ||
}) | ||
|
||
rule.あるいたとき(async function() { | ||
/*+ あるいたとき */ | ||
}) | ||
|
||
rule.へんすうがかわったとき(async function() { | ||
/*+ へんすうがかわったとき */ | ||
}) | ||
|
||
rule.タップされたとき(async function() { | ||
/*+ タップされたとき */ | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
つくる('白色のドレイク', 11, 6, 'map1', むき.した) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
this.しょうかんする('白色のドレイク', 1, 0) |
Oops, something went wrong.