UNPKG

@webwriter/block-based-code

Version:

Write block-based code (e.g. Scratch) and run it.

213 lines (211 loc) 4.23 kB
import { BlockDefinition } from "../types"; export const blocks = [ { type: "operators:sum", message0: "%1 + %2", args0: [ { type: "input_value", name: "A", check: "Number", }, { type: "input_value", name: "B", check: "Number", }, ], inputsInline: true, output: "Number", category: "operators", style: "operator_blocks", } as const, { type: "operators:subtract", message0: "%1 - %2", args0: [ { type: "input_value", name: "A", check: "Number", }, { type: "input_value", name: "B", check: "Number", }, ], inputsInline: true, output: "Number", category: "operators", style: "operator_blocks", } as const, { type: "operators:multiply", message0: "%1 * %2", args0: [ { type: "input_value", name: "A", check: "Number", }, { type: "input_value", name: "B", check: "Number", }, ], inputsInline: true, output: "Number", category: "operators", style: "operator_blocks", } as const, { type: "operators:divide", message0: "%1 / %2", args0: [ { type: "input_value", name: "A", check: "Number", }, { type: "input_value", name: "B", check: "Number", }, ], inputsInline: true, output: "Number", category: "operators", style: "operator_blocks", } as const, { type: "operators:smaller", message0: "%1 < %2", args0: [ { type: "input_value", name: "A", check: "Number", }, { type: "input_value", name: "B", check: "Number", }, ], inputsInline: true, output: "Boolean", category: "operators", style: "operator_blocks", } as const, { type: "operators:greater", message0: "%1 > %2", args0: [ { type: "input_value", name: "A", check: "Number", }, { type: "input_value", name: "B", check: "Number", }, ], inputsInline: true, output: "Boolean", category: "operators", style: "operator_blocks", } as const, { type: "operators:equal", message0: "%1 = %2", args0: [ { type: "input_value", name: "A", check: "Number", }, { type: "input_value", name: "B", check: "Number", }, ], inputsInline: true, output: "Boolean", category: "operators", style: "operator_blocks", } as const, { type: "operators:and", message0: "%{BKY_AND}", args0: [ { type: "input_value", name: "A", check: "Boolean", }, { type: "input_value", name: "B", check: "Boolean", }, ], inputsInline: true, output: "Boolean", category: "operators", style: "operator_blocks", } as const, { type: "operators:or", message0: "%{BKY_OR}", args0: [ { type: "input_value", name: "A", check: "Boolean", }, { type: "input_value", name: "B", check: "Boolean", }, ], inputsInline: true, output: "Boolean", category: "operators", style: "operator_blocks", } as const, { type: "operators:not", message0: "%{BKY_NOT}", args0: [ { type: "input_value", name: "A", check: "Boolean", }, ], output: "Boolean", category: "operators", style: "operator_blocks", }, { type: "operators:absolute", message0: "%{BKY_ABSOLUTE}", args0: [ { type: "input_value", name: "VALUE", check: "Number", }, ], output: "Number", category: "operators", style: "operator_blocks", }, ] satisfies BlockDefinition[];