diff --git a/RoloLudo.package/FirelightsCharacter.class/instance/name.st b/RoloLudo.package/FirelightsCharacter.class/instance/name.st new file mode 100644 index 0000000..22077c2 --- /dev/null +++ b/RoloLudo.package/FirelightsCharacter.class/instance/name.st @@ -0,0 +1,3 @@ +accessing +name + ^ name \ No newline at end of file diff --git a/RoloLudo.package/FirelightsCharacter.class/instance/patient.st b/RoloLudo.package/FirelightsCharacter.class/instance/patient.st new file mode 100644 index 0000000..4ccb1a1 --- /dev/null +++ b/RoloLudo.package/FirelightsCharacter.class/instance/patient.st @@ -0,0 +1,3 @@ +accessing +patient + ^ self approaches at: 'Patient' \ No newline at end of file diff --git a/RoloLudo.package/FirelightsCharacter.class/instance/printOn..st b/RoloLudo.package/FirelightsCharacter.class/instance/printOn..st new file mode 100644 index 0000000..8a411b3 --- /dev/null +++ b/RoloLudo.package/FirelightsCharacter.class/instance/printOn..st @@ -0,0 +1,10 @@ +accessing +printOn: aStream + super initialize. + aStream + nextPutAll: '- Name: ', self name; cr; + nextPutAll: '- Pronouns: ', self pronouns; cr; + nextPutAll: '- Approaches'; cr; + nextPutAll: ' - Strong: ', self strong asString; cr; + nextPutAll: ' - Patient: ', self patient asString; cr; + nextPutAll: ' - Quick: ', self quick asString; cr \ No newline at end of file diff --git a/RoloLudo.package/FirelightsCharacter.class/instance/pronouns.st b/RoloLudo.package/FirelightsCharacter.class/instance/pronouns.st new file mode 100644 index 0000000..fdc9946 --- /dev/null +++ b/RoloLudo.package/FirelightsCharacter.class/instance/pronouns.st @@ -0,0 +1,3 @@ +accessing +pronouns + ^ pronouns \ No newline at end of file diff --git a/RoloLudo.package/FirelightsCharacter.class/instance/quick..st b/RoloLudo.package/FirelightsCharacter.class/instance/quick..st new file mode 100644 index 0000000..291c1fa --- /dev/null +++ b/RoloLudo.package/FirelightsCharacter.class/instance/quick..st @@ -0,0 +1,3 @@ +as yet unclassified +quick: anInteger + self approaches at: 'Quick' put: anInteger. \ No newline at end of file diff --git a/RoloLudo.package/FirelightsCharacter.class/instance/quick.st b/RoloLudo.package/FirelightsCharacter.class/instance/quick.st new file mode 100644 index 0000000..9cf5601 --- /dev/null +++ b/RoloLudo.package/FirelightsCharacter.class/instance/quick.st @@ -0,0 +1,3 @@ +accessing +quick + ^ self approaches at: 'Quick' \ No newline at end of file diff --git a/RoloLudo.package/FirelightsCharacter.class/instance/strong.st b/RoloLudo.package/FirelightsCharacter.class/instance/strong.st new file mode 100644 index 0000000..549d1e7 --- /dev/null +++ b/RoloLudo.package/FirelightsCharacter.class/instance/strong.st @@ -0,0 +1,3 @@ +accessing +strong + ^ self approaches at: 'Strong' \ No newline at end of file diff --git a/RoloLudo.package/FirelightsCharacter.class/instance/uiViewFor..st b/RoloLudo.package/FirelightsCharacter.class/instance/uiViewFor..st new file mode 100644 index 0000000..37da40b --- /dev/null +++ b/RoloLudo.package/FirelightsCharacter.class/instance/uiViewFor..st @@ -0,0 +1,6 @@ +accessing +uiViewFor: aView + + ^ aView text + title: 'Character Info'; + text: [ self printString ] \ No newline at end of file diff --git a/RoloLudo.package/FirelightsGame.class/instance/deck.st b/RoloLudo.package/FirelightsGame.class/instance/deck.st new file mode 100644 index 0000000..98bbfd8 --- /dev/null +++ b/RoloLudo.package/FirelightsGame.class/instance/deck.st @@ -0,0 +1,3 @@ +accessing +deck + ^ deck ifNil: [ deck := DeckOfCards initialize] \ No newline at end of file diff --git a/RoloLudo.package/FirelightsGame.class/instance/worldMap.st b/RoloLudo.package/FirelightsGame.class/instance/worldMap.st new file mode 100644 index 0000000..c282080 --- /dev/null +++ b/RoloLudo.package/FirelightsGame.class/instance/worldMap.st @@ -0,0 +1,3 @@ +accessing +worldMap + ^ wordMap ifNil: [ wordMap := OrderedCollection new ] \ No newline at end of file diff --git a/RoloLudo.package/FirelightsGame.class/instance/worldMapDraw.st b/RoloLudo.package/FirelightsGame.class/instance/worldMapDraw.st new file mode 100644 index 0000000..88d4b6a --- /dev/null +++ b/RoloLudo.package/FirelightsGame.class/instance/worldMapDraw.st @@ -0,0 +1,6 @@ +accessing +worldMapDraw + | currentPlace | + currentPlace := self deck draw. + self worldMap add: currentPlace. + ^ currentPlace \ No newline at end of file